Fix [ 1890206 ] getLines without reload not assigning trx

Removing duplicated code left by the fix
This commit is contained in:
Carlos Ruiz 2008-02-09 17:26:29 +00:00
parent 232f2c383c
commit 52e5d28049
1 changed files with 2 additions and 4 deletions

View File

@ -200,10 +200,8 @@ public final class MAllocationHdr extends X_C_AllocationHdr implements DocAction
public MAllocationLine[] getLines (boolean requery)
{
if (m_lines != null && m_lines.length != 0 && !requery) {
if (m_lines != null && m_lines.length != 0 && !requery) {
set_TrxName(m_lines, get_TrxName());
return m_lines;
}
set_TrxName(m_lines, get_TrxName());
return m_lines;
}
//
String sql = "SELECT * FROM C_AllocationLine WHERE C_AllocationHdr_ID=?";