remove unnecessary check between pcd table line selections to fix pcd default value refresh problem.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2147 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
jlin16 2006-12-28 07:02:04 +00:00
parent f3825a180a
commit 5d07408433
1 changed files with 1 additions and 1 deletions

View File

@ -1699,7 +1699,7 @@ private JComboBox getJComboBoxItemType() {
public void itemStateChanged(java.awt.event.ItemEvent e) {
int row = jTablePcd.getSelectedRow();
if (row < 0 || model.getValueAt(row, 2).equals(jComboBoxItemType.getSelectedItem())) {
if (row < 0) {
return;
}