X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/formatter/CodeFormatter.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/formatter/CodeFormatter.java index 7938516..36955ff 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/formatter/CodeFormatter.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/formatter/CodeFormatter.java @@ -132,16 +132,16 @@ public class CodeFormatter implements ITerminalSymbols, ICodeFormatter { , true /* whitespace */ , false /* nls */ , false /* assert */ - , true /* tokenizeStrings */ - ); // regular scanner for forming lines + , true, /* tokenizeStrings */ + null, null); // regular scanner for forming lines scanner.recordLineSeparator = true; // to remind of the position of the beginning of the line. splitScanner = new Scanner(true /* comment */ , true /* whitespace */ , false /* nls */ , false /* assert */ - , true /* tokenizeStrings */ - ); + , true, /* tokenizeStrings */ + null, null); // secondary scanner to split long lines formed by primary scanning // initialize current line buffer currentLineBuffer = new StringBuffer();