Skip to content

Commit 563947f

Browse files
committed
protected instead of private
1 parent f9e28df commit 563947f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/main/java/com/spikes2212/util/smartmotorcontrollers/SparkWrapper.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,27 +24,27 @@ public class SparkWrapper implements SmartMotorController {
2424
/**
2525
* The spark motor controller.
2626
*/
27-
private SparkBase sparkBase;
27+
protected SparkBase sparkBase;
2828

2929
/**
3030
* The spark's configuration accessor.
3131
*/
32-
private SparkBaseConfigAccessor configAccessor;
32+
protected SparkBaseConfigAccessor configAccessor;
3333

3434
/**
3535
* The spark's configuration.
3636
*/
37-
private SparkBaseConfig sparkConfig;
37+
protected SparkBaseConfig sparkConfig;
3838

3939
/**
4040
* The closed loop configuration for the spark.
4141
*/
42-
private ClosedLoopConfig closedLoopConfig;
42+
protected ClosedLoopConfig closedLoopConfig;
4343

4444
/**
4545
* The encoder configuration for the spark.
4646
*/
47-
private EncoderConfig encoderConfig;
47+
protected EncoderConfig encoderConfig;
4848

4949
/**
5050
* Constructs a new instance of {@link SparkWrapper} with a {@link SparkMax} as the motor controller.

0 commit comments

Comments
 (0)