Updated to latest Protocol Version
This commit is contained in:
@@ -48,8 +48,8 @@ public record InsEndpoint(String host, int port) {
|
||||
|
||||
@Override
|
||||
public boolean equals(Object o) {
|
||||
if (!(o instanceof InsEndpoint other)) return false;
|
||||
return host.equalsIgnoreCase(other.host) && port == other.port;
|
||||
if (!(o instanceof InsEndpoint(String host1, int port1))) return false;
|
||||
return host.equalsIgnoreCase(host1) && port == port1;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user