Skip to content

Commit c304768

Browse files
committed
Source > Cleanup
1 parent cc41e7f commit c304768

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/main/java/io/github/classgraph/TypeArgument.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,8 @@ public boolean equals(final Object obj) {
247247
}
248248
final TypeArgument other = (TypeArgument) obj;
249249
return Objects.equals(this.typeAnnotationInfo, other.typeAnnotationInfo)
250-
&& (Objects.equals(this.typeSignature, other.typeSignature) && other.wildcard.equals(this.wildcard));
250+
&& (Objects.equals(this.typeSignature, other.typeSignature)
251+
&& other.wildcard.equals(this.wildcard));
251252
}
252253

253254
// -------------------------------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)