Skip to content

Commit

Permalink
try without setting string builder size
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Dec 10, 2024
1 parent 4ab3797 commit 104b674
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/lucee/runtime/type/QueryImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -1602,7 +1602,7 @@ public String toString() {
//lucee.aprint.o("");
//lucee.aprint.o(size);

StringBuffer sb = new StringBuffer(size);
StringBuffer sb = new StringBuffer();

sb.append("| Query: ").append(this.name).append("\tRecordCount: ").append(getRecordcount()).append('\n');

Expand Down

0 comments on commit 104b674

Please sign in to comment.