Reverting these two lines from revision 4185

They are not working with latest change of revision 4194
This commit is contained in:
Carlos Ruiz 2008-01-15 03:25:00 +00:00
parent 529901a54d
commit 74db7ec57a
1 changed files with 2 additions and 4 deletions

View File

@ -498,7 +498,6 @@ public class VLookup extends JComponent
if (notFound) // <key> if (notFound) // <key>
{ {
m_value = null; m_value = null;
if (!m_inserting)
actionCombo (null); // data binding actionCombo (null); // data binding
log.fine(m_columnName + "=" + value + ": Not found"); log.fine(m_columnName + "=" + value + ": Not found");
} }
@ -518,7 +517,6 @@ public class VLookup extends JComponent
if (m_combo.getSelectedItem() == null) if (m_combo.getSelectedItem() == null)
{ {
log.info(m_columnName + "=" + value + ": not in Lookup - set to NULL"); log.info(m_columnName + "=" + value + ": not in Lookup - set to NULL");
if (!m_inserting)
actionCombo (null); // data binding (calls setValue again) actionCombo (null); // data binding (calls setValue again)
m_value = null; m_value = null;
} }