* minor - null check.
This commit is contained in:
parent
0423542a2f
commit
f96221f0d3
|
@ -229,6 +229,11 @@ public class VLocator extends JComponent
|
|||
*/
|
||||
private void setValue (Object value, boolean fire)
|
||||
{
|
||||
if (m_mLocator == null)
|
||||
{
|
||||
return ;
|
||||
}
|
||||
|
||||
if (value != null)
|
||||
{
|
||||
m_mLocator.setOnly_Warehouse_ID (getOnly_Warehouse_ID ());
|
||||
|
|
Loading…
Reference in New Issue