mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
[wpilib] Rename TimedRobot constants to all caps
This commit is contained in:
@@ -66,7 +66,7 @@ public class TimedRobot extends IterativeRobotBase {
|
||||
}
|
||||
|
||||
/** Default loop period. */
|
||||
public static final double kDefaultPeriod = 0.02;
|
||||
public static final double DEFAULT_PERIOD = 0.02;
|
||||
|
||||
// The C pointer to the notifier object. We don't use it directly, it is
|
||||
// just passed to the JNI bindings.
|
||||
@@ -79,7 +79,7 @@ public class TimedRobot extends IterativeRobotBase {
|
||||
|
||||
/** Constructor for TimedRobot. */
|
||||
protected TimedRobot() {
|
||||
this(kDefaultPeriod);
|
||||
this(DEFAULT_PERIOD);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user