Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
spacey-sooty committed Aug 12, 2024
1 parent 0b20370 commit 59ef766
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ public static void bind(edu.wpi.first.epilogue.AlphaBot robot) {
public static void bind(edu.wpi.first.epilogue.BetaBot robot) {
robot.addPeriodic(() -> {
long start = System.nanoTime();
if (config.loggingPeriod == null {
if (config.loggingPeriod == null) {
config.loggingPeriod = Seconds.of(robot.getPeriod());
}
if (config.loggingPeriodOffset == null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* A configuration object to be used by the generated {@code Epilogue} class to customize its
* behavior.
*/
@SuppressWarnings("checkstyle:MemberName")
@SuppressWarnings({"checkstyle:MemberName", "UnusedField"})
public class EpilogueConfiguration {
/**
* The data logger implementation for Epilogue to use. By default, this will log data directly to
Expand Down

0 comments on commit 59ef766

Please sign in to comment.