This commit is contained in:
adam-m 2012-10-31 16:38:55 -04:00
commit f498b9cfe7

View File

@ -399,7 +399,6 @@ final class HashDbManagementPanel extends javax.swing.JPanel implements OptionsP
singleMNB.setLocationRelativeTo(null); singleMNB.setLocationRelativeTo(null);
singleMNB.setVisible(true); singleMNB.setVisible(true);
singleMNB.setModal(true); //End Modal reference singleMNB.setModal(true); //End Modal reference
JOptionPane.showMessageDialog(this, "Successfuly created index");
indexingState.put(current.getName(), Boolean.FALSE); indexingState.put(current.getName(), Boolean.FALSE);
setButtonFromIndexStatus(indexButton, this.hashDbIndexStatusLabel, current.status()); setButtonFromIndexStatus(indexButton, this.hashDbIndexStatusLabel, current.status());
}//GEN-LAST:event_indexButtonActionPerformed }//GEN-LAST:event_indexButtonActionPerformed
@ -507,7 +506,6 @@ final class HashDbManagementPanel extends javax.swing.JPanel implements OptionsP
List<HashDb> unindexed = new ArrayList<HashDb>(); List<HashDb> unindexed = new ArrayList<HashDb>();
for(int i = 0; i < hashSetTableModel.getRowCount(); i++){ for(int i = 0; i < hashSetTableModel.getRowCount(); i++){
if(! hashSetTableModel.indexExists(i)){ if(! hashSetTableModel.indexExists(i)){
String s = (String) hashSetTableModel.getValueAt(i, hashSetTableModel.getColumnCount());
unindexed.add(hashSetTableModel.getDBAt(i)); unindexed.add(hashSetTableModel.getDBAt(i));
} }
} }