IDEMPIERE-308 Performance: Replace with StringBuilder / fix problem found with lookups
This commit is contained in:
parent
90c30026c4
commit
ae5622f7de
|
@ -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 = new StringBuilder(INACTIVE_S).append(INACTIVE_E);
|
name = new StringBuilder(INACTIVE_S).append(name).append(INACTIVE_E);
|
||||||
m_hasInactive = true;
|
m_hasInactive = true;
|
||||||
}
|
}
|
||||||
if (isNumber)
|
if (isNumber)
|
||||||
|
|
Loading…
Reference in New Issue