* JmeFormatter now uses non threadsafe StringBuilder for performance

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@9304 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
Sha..rd 2012-04-14 19:36:02 +00:00
parent f6b5335976
commit f844ca429f

View File

@ -59,7 +59,7 @@ public class JmeFormatter extends Formatter {
@Override
public String format(LogRecord record) {
StringBuffer sb = new StringBuffer();
StringBuilder sb = new StringBuilder();
calendar.setTime(record.getMillis());
args[0] = calendar;