Skip to content

Commit

Permalink
StringBuilder instead of StringBuffer
Browse files Browse the repository at this point in the history
  • Loading branch information
siom79 committed Mar 6, 2024
1 parent f511970 commit b0296f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion japicmp/src/main/java/japicmp/cmp/JApiCmpArchive.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public String getName() {

@Override
public String toString() {
final StringBuffer sb = new StringBuffer("JApiCmpArchive{");
StringBuilder sb = new StringBuilder("JApiCmpArchive{");
sb.append("file=").append(file);
sb.append(", bytes=");
if (bytes == null) sb.append("null");
Expand Down

0 comments on commit b0296f3

Please sign in to comment.