mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-18 21:16:54 +02:00
reimplement VirtualNetworkRoute.compareTo
This commit is contained in:
parent
86122e1646
commit
920e1f56c2
1 changed files with 3 additions and 3 deletions
|
@ -69,9 +69,9 @@ public final class VirtualNetworkRoute implements Comparable<VirtualNetworkRoute
|
|||
}
|
||||
|
||||
@Override
|
||||
public int compareTo(VirtualNetworkRoute other) {
|
||||
return this.toString().compareTo(other.toString());
|
||||
}
|
||||
public int compareTo(VirtualNetworkRoute other) {
|
||||
throw new RuntimeException("Unimplemented");
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object o) {
|
||||
|
|
Loading…
Add table
Reference in a new issue