MCPcopy Create free account
hub / github.com/grpc/grpc-java / equals

Method equals

api/src/main/java/io/grpc/QueryParams.java:247–257  ·  view source on GitHub ↗
(Object o)

Source from the content-addressed store, hash-verified

245 }
246
247 @Override
248 public boolean equals(Object o) {
249 if (this == o) {
250 return true;
251 }
252 if (!(o instanceof Entry)) {
253 return false;
254 }
255 Entry entry = (Entry) o;
256 return Objects.equals(rawKey, entry.rawKey) && Objects.equals(rawValue, entry.rawValue);
257 }
258
259 @Override
260 public int hashCode() {

Callers

nothing calls this directly

Calls 1

equalsMethod · 0.45

Tested by

no test coverage detected