[errorprone] Fix MissingOverride error

see https://errorprone.info/bugpattern/MissingOverride
Change-Id: Iec8833eb52d91a4ef117160407b9151f25617cb5
This commit is contained in:
Matthias Sohn 2023-04-28 21:46:04 +02:00
parent 2277f13041
commit 6b831000c5
1 changed files with 1 additions and 0 deletions

View File

@ -203,6 +203,7 @@ private static class AbsIntComparator implements IntComparator {
private AbsIntComparator() {
}
@Override
public int compare(int a, int b) {
return Math.abs(a) - Math.abs(b);
}