We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ff6b09 commit f0fe313Copy full SHA for f0fe313
src/java.base/share/classes/jdk/internal/classfile/impl/AbstractPoolEntry.java
@@ -534,15 +534,6 @@ public Utf8Entry name() {
534
public String asInternalName() {
535
return ref1.stringValue();
536
}
537
-
538
- @Override
539
- public boolean equals(Object o) {
540
- if (o == this) { return true; }
541
- if (o instanceof AbstractNamedEntry ne) {
542
- return tag == ne.tag() && name().equals(ref1());
543
- }
544
- return false;
545
546
547
548
public static final class ClassEntryImpl extends AbstractNamedEntry implements ClassEntry {
0 commit comments