mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
add missing @override (#975)
* no effective code change: add missing @override in "io.ebean.*" package * no effective code change: add missing @override in "io.ebeaninternal.api.*" package * no effective code change: add missing @override in "io.ebeaninternal.server.*" package * no effective code change: add missing @override in "io.ebeaninternal.util.*" package * no effective code change: add missing @override in "io.ebeanservice.*" package * no effective code change: add missing @override in "src/test/java/"
This commit is contained in:
committed by
Rob Bygrave
parent
43c978e41a
commit
40f5596837
@@ -16,6 +16,7 @@ public final class ElComparatorCompound<T> implements Comparator<T>, ElComparato
|
||||
this.array = array;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int compare(T o1, T o2) {
|
||||
|
||||
for (ElComparator<T> anArray : array) {
|
||||
@@ -28,6 +29,7 @@ public final class ElComparatorCompound<T> implements Comparator<T>, ElComparato
|
||||
return 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int compareValue(Object value, T o2) {
|
||||
|
||||
for (ElComparator<T> anArray : array) {
|
||||
|
||||
Reference in New Issue
Block a user