MCPcopy Index your code
hub / github.com/apache/groovy / equals

Method equals

src/main/java/groovy/lang/GString.java:221–227  ·  view source on GitHub ↗

{@inheritDoc}

(Object that)

Source from the content-addressed store, hash-verified

219 * {@inheritDoc}
220 */
221 @Override
222 public boolean equals(Object that) {
223 if (this == that) return true;
224 if (!(that instanceof GString)) return false;
225
226 return equals((GString) that);
227 }
228
229 /**
230 * Compares this GString with another GString by rendered content.

Callers

nothing calls this directly

Calls 3

toStringMethod · 0.95
equalsMethod · 0.65
toStringMethod · 0.65

Tested by

no test coverage detected