Fix error introduced with revision 2039
This commit is contained in:
parent
d183b033eb
commit
22e989d633
|
@ -1904,7 +1904,7 @@ public abstract class PO
|
|||
if (m_newValues[i] != null)
|
||||
return true; // something changed
|
||||
}
|
||||
if (m_custom.size() > 0)
|
||||
if (m_custom != null && m_custom.size() > 0)
|
||||
return true; // there are custom columns modified
|
||||
return false;
|
||||
} // is_Change
|
||||
|
|
Loading…
Reference in New Issue