Skip to content

Commit

Permalink
0004943: Replaced StringBuffer with StringBuilder in CsvExport
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-miller-jumpmind committed Oct 4, 2021
1 parent 5ddecd1 commit 657c4d4
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -36,7 +36,7 @@ public class CsvExport {
protected String fileName;
protected String title;

protected StringBuffer cellData;
protected StringBuilder cellData;
protected final String csvMimeContentType = "text/csv";

final Logger log = LoggerFactory.getLogger(getClass());
Expand Down Expand Up @@ -66,7 +66,7 @@ public void init(String fileName, String title) {
} else {
this.title = title;
}
this.cellData = new StringBuffer();
this.cellData = new StringBuilder();
}

public void setFileName(String fileName) {
Expand Down

0 comments on commit 657c4d4

Please sign in to comment.