We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc41e7f commit c304768Copy full SHA for c304768
1 file changed
src/main/java/io/github/classgraph/TypeArgument.java
@@ -247,7 +247,8 @@ public boolean equals(final Object obj) {
247
}
248
final TypeArgument other = (TypeArgument) obj;
249
return Objects.equals(this.typeAnnotationInfo, other.typeAnnotationInfo)
250
- && (Objects.equals(this.typeSignature, other.typeSignature) && other.wildcard.equals(this.wildcard));
+ && (Objects.equals(this.typeSignature, other.typeSignature)
251
+ && other.wildcard.equals(this.wildcard));
252
253
254
// -------------------------------------------------------------------------------------------------------------
0 commit comments