Merge "Fixed access issues and 'overridableParamatar' misspelling."

This commit is contained in:
Brad Miller (WPI)
2015-06-03 05:45:38 -07:00
committed by Gerrit Code Review
3 changed files with 8 additions and 8 deletions

View File

@@ -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;
}
};