Skip to content

Commit

Permalink
#304 increased initial StringBuilder size
Browse files Browse the repository at this point in the history
  • Loading branch information
timowest committed Dec 14, 2012
1 parent 85cbe39 commit b9b832b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
*/
public abstract class SerializerBase<S extends SerializerBase<S>> implements Visitor<Void,Void> {

private final StringBuilder builder = new StringBuilder();
private final StringBuilder builder = new StringBuilder(128);

private String constantPrefix = "a";

Expand Down

0 comments on commit b9b832b

Please sign in to comment.