mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-16 16:58:56 +00:00
Added file header and class annotations options to Xtext generator (bug 296097)
Change-Id: I403627ac5dfd1575078ce113da987739244a728e Signed-off-by: Miro Spönemann <miro.spoenemann@itemis.de>
This commit is contained in:
parent
9cd67e9bef
commit
1b8e03df34
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue