Fix [ 1890206 ] getLines without reload not assigning trx
Removing duplicated code left by the fix
This commit is contained in:
parent
232f2c383c
commit
52e5d28049
|
@ -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=?";
|
||||
|
|
Loading…
Reference in New Issue