Add missing @Override annotations
This commit is contained in:
@@ -118,15 +118,18 @@ public class OperatorMatches extends Operator {
|
||||
this.access = access;
|
||||
}
|
||||
|
||||
@Override
|
||||
public char charAt(int index) {
|
||||
this.access.check();
|
||||
return this.value.charAt(index);
|
||||
}
|
||||
|
||||
@Override
|
||||
public CharSequence subSequence(int start, int end) {
|
||||
return new MatcherInput(this.value.subSequence(start, end), this.access);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int length() {
|
||||
return this.value.length();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user