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

Method equals

xds/src/main/java/io/grpc/xds/Filter.java:170–181  ·  view source on GitHub ↗
(Object o)

Source from the content-addressed store, hash-verified

168 }
169
170 @Override
171 public boolean equals(Object o) {
172 if (this == o) {
173 return true;
174 }
175 if (o == null || getClass() != o.getClass()) {
176 return false;
177 }
178 NamedFilterConfig that = (NamedFilterConfig) o;
179 return Objects.equals(name, that.name)
180 && Objects.equals(filterConfig, that.filterConfig);
181 }
182
183 @Override
184 public int hashCode() {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected