IDEMPIERE-308 Performance: Replace with StringBuilder / fix problem found with lookups

This commit is contained in:
Carlos Ruiz 2012-10-02 23:17:29 -05:00
parent 110618d495
commit 3bbe4cec45
1 changed files with 1 additions and 1 deletions

View File

@ -758,7 +758,7 @@ public final class MLookup extends Lookup implements Serializable
boolean isActive = rs.getString(4).equals("Y");
if (!isActive)
{
name.append(INACTIVE_S).append(INACTIVE_E);
name = new StringBuilder(INACTIVE_S).append(INACTIVE_E);
m_hasInactive = true;
}
if (isNumber)