Mark MaxMapCountCheck#isSystemCheck as final

This commit marks the method MaxMapCountCheck#isSystemCheck as final as
this method should not be modifiable by inheriting classes (used in
tests).
This commit is contained in:
Jason Tedor 2016-05-02 11:48:35 -04:00
parent 8bdda49f90
commit 226679c606
1 changed files with 1 additions and 1 deletions

View File

@ -473,7 +473,7 @@ final class BootstrapCheck {
}
@Override
public boolean isSystemCheck() {
public final boolean isSystemCheck() {
return true;
}