kopia lustrzana https://github.com/onthegomap/planetiler
include value if keys match exactly
rodzic
726e6d0107
commit
88efc258ae
|
@ -6,7 +6,11 @@ public record SortableFeature(long key, byte[] value) implements Comparable<Sort
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int compareTo(SortableFeature o) {
|
public int compareTo(SortableFeature o) {
|
||||||
return Long.compare(key, o.key);
|
int result = Long.compare(key, o.key);
|
||||||
|
if (result == 0) {
|
||||||
|
result = Arrays.compare(value, o.value);
|
||||||
|
}
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Ładowanie…
Reference in New Issue