Clean up Java style (#5990)

Also make equivalent changes in C++ where applicable.

Co-authored-by: Sriman Achanta <68172138+srimanachanta@users.noreply.github.com>
This commit is contained in:
Tyler Veness
2023-12-03 16:21:32 -08:00
committed by GitHub
parent 66172ab288
commit 2bb1409b82
113 changed files with 426 additions and 617 deletions

View File

@@ -22,8 +22,8 @@ public class ReplaceMeTrapezoidProfileCommand extends TrapezoidProfileCommand {
// Use current trajectory state here
},
// Goal state
() -> new TrapezoidProfile.State(),
TrapezoidProfile.State::new,
// Current state
() -> new TrapezoidProfile.State());
TrapezoidProfile.State::new);
}
}