mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
StringBuffer -> StringBuilder
This commit is contained in:
parent
784d16daf0
commit
4fb814778b
1 changed files with 2 additions and 2 deletions
|
@ -56,9 +56,9 @@ public class ErrorParserManager extends OutputStream {
|
|||
|
||||
private String previousLine;
|
||||
private OutputStream outputStream;
|
||||
private StringBuffer currentLine = new StringBuffer();
|
||||
private StringBuilder currentLine = new StringBuilder();
|
||||
|
||||
private StringBuffer scratchBuffer = new StringBuffer();
|
||||
private StringBuilder scratchBuffer = new StringBuilder();
|
||||
|
||||
private boolean hasErrors = false;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue