Skip to content

Commit

Permalink
Replace Javadoc StringBuffer with StringBuilder
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Aug 8, 2024
1 parent 24f2ddb commit a85a7f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
* }
*
* public String toString() {
* StringBuffer buffer = new StringBuffer();
* StringBuilder buffer = new StringBuilder();
* for (Iterator iter = v.iterator(); iter.hasNext();) {
* buffer.append(' ').append(iter.next());
* }
Expand Down

0 comments on commit a85a7f7

Please sign in to comment.