Skip to content

Commit

Permalink
Remove redundant keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jul 9, 2024
1 parent e06ce12 commit 6ffd5ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/apache/bcel/generic/Type.java
Original file line number Diff line number Diff line change
Expand Up @@ -402,6 +402,6 @@ public Type normalizeForStackOrLocal() {
*/
@Override
public String toString() {
return this.equals(NULL) || type >= Const.T_UNKNOWN ? signature : Utility.signatureToString(signature, false);
return equals(NULL) || type >= Const.T_UNKNOWN ? signature : Utility.signatureToString(signature, false);
}
}

0 comments on commit 6ffd5ef

Please sign in to comment.