Skip to content

Commit

Permalink
MONDRIAN
Browse files Browse the repository at this point in the history
   Changed to use StringBuilder.

[git-p4: depot-paths = "//open/mondrian/": change = 8660]
  • Loading branch information
Richard Emberson committed Feb 5, 2007
1 parent ad3446a commit 1066894
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/mondrian/rolap/RolapConnection.java
Expand Up @@ -377,7 +377,7 @@ class Listener implements MemoryMonitor.Listener {
this.query = query;
}
public void memoryUsageNotification(long used, long max) {
StringBuffer buf = new StringBuffer(200);
StringBuilder buf = new StringBuilder(200);
buf.append("OutOfMemory used=");
buf.append(used);
buf.append(", max=");
Expand Down

0 comments on commit 1066894

Please sign in to comment.