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

This commit is contained in:
Carlos Ruiz 2012-10-04 18:32:31 -05:00
parent 90c30026c4
commit ae5622f7de
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 = new StringBuilder(INACTIVE_S).append(INACTIVE_E);
name = new StringBuilder(INACTIVE_S).append(name).append(INACTIVE_E);
m_hasInactive = true;
}
if (isNumber)