mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
Fixed access issues and 'overridableParamatar' misspelling.
interruptFired was package-private, which meant that it couldn't be used... at all. Oops! Also, fixed obvious misspelling of overridableParamatar, which probably won't hurt anyone because they couldn't have used interruptFired anyway... Change-Id: I6c57c015d04cde31f5be92265db1d1d9ba0760c9
This commit is contained in:
@@ -91,7 +91,7 @@ public abstract class AbstractInterruptTest extends AbstractComsSetup {
|
||||
}
|
||||
|
||||
@Override
|
||||
void interruptFired(int interruptAssertedMask, InterruptCounter param) {
|
||||
public void interruptFired(int interruptAssertedMask, InterruptCounter param) {
|
||||
interruptFireTime.set(Utility.getFPGATime());
|
||||
counter.increment();
|
||||
try{
|
||||
@@ -106,7 +106,7 @@ public abstract class AbstractInterruptTest extends AbstractComsSetup {
|
||||
};
|
||||
|
||||
@Override
|
||||
public InterruptCounter overridableParamater(){
|
||||
public InterruptCounter overridableParameter(){
|
||||
return counter;
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user