Merge "Added file header and class annotations options to Xtext generator (bug 296097)"

This commit is contained in:
Miro Spönemann 2015-02-03 07:04:03 -05:00 committed by Gerrit Code Review @ Eclipse.org
commit b5b3936398

View file

@ -205,7 +205,7 @@ public class Strings {
if (bufLen < 0) {
bufLen = Integer.MAX_VALUE;
}
StringBuffer outBuffer = new StringBuffer(bufLen);
StringBuilder outBuffer = new StringBuilder(bufLen);
for (int x = 0; x < len; x++) {
char aChar = theString.charAt(x);