Added missing "final" keyword

This commit is contained in:
Lukas Eder 2012-11-30 11:51:03 +01:00
parent a209da8676
commit fb0127bc6f

View File

@ -146,7 +146,7 @@ abstract class AbstractRecord extends AbstractStore implements Record {
}
@Override
public int getIndex(String fieldName) {
public final int getIndex(String fieldName) {
return fields.getIndex(fieldName);
}