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:
Colby Skeggs
2015-04-09 16:29:14 -07:00
parent 0dffbd8634
commit 569f02de89
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;
}
};