IDEMPIERE-308 Performance: Replace with StringBuilder / fix problem found with lookups
This commit is contained in:
parent
110618d495
commit
3bbe4cec45
|
|
@ -758,7 +758,7 @@ public final class MLookup extends Lookup implements Serializable
|
||||||
boolean isActive = rs.getString(4).equals("Y");
|
boolean isActive = rs.getString(4).equals("Y");
|
||||||
if (!isActive)
|
if (!isActive)
|
||||||
{
|
{
|
||||||
name.append(INACTIVE_S).append(INACTIVE_E);
|
name = new StringBuilder(INACTIVE_S).append(INACTIVE_E);
|
||||||
m_hasInactive = true;
|
m_hasInactive = true;
|
||||||
}
|
}
|
||||||
if (isNumber)
|
if (isNumber)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue