Commit 2fa69456 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Another optimization.

git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@3152 b35dd754-fafc-0310-a699-88a17e54d16e
parent d40d399f
......@@ -821,7 +821,7 @@ public class SessionManager extends BasicModule {
ClientSession session = null;
// Build a JID represention based on the given JID data
StringBuilder buf = new StringBuilder();
StringBuilder buf = new StringBuilder(40);
if (username != null) {
buf.append(username).append("@");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment