Fixed misplaced parenthesis.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6548 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Andrzej Kapolka
2011-03-23 02:12:36 +00:00
parent 34f0f9ab8d
commit 6dc165f911
@@ -1042,7 +1042,7 @@ public class PresentsDObjectMgr
{
int count = _histo.size();
return _totalElapsed + "us/" + count + " = " + (_totalElapsed/count) + "us avg " +
StringUtil.toString(_histo.getBuckets() + " " + _longest + "us longest");
StringUtil.toString(_histo.getBuckets()) + " " + _longest + "us longest";
}
protected long _totalElapsed, _longest;