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");
|
||||
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)
|
||||
|
|
Loading…
Reference in New Issue