retrying without jars

This commit is contained in:
BetaSteward 2011-05-14 23:39:41 -04:00
parent a4c3deb7ac
commit 0e66c5e030
23 changed files with 2646 additions and 57 deletions

View file

@ -190,10 +190,11 @@ public class TablesPanel extends javax.swing.JPanel {
}
public void hideTables() {
if (tableWaitingDialog.isVisible()) {
if (tableWaitingDialog != null && tableWaitingDialog.isVisible()) {
tableWaitingDialog.closeDialog();
}
updateTask.cancel(true);
if (updateTask != null)
updateTask.cancel(true);
this.chatPanel.disconnect();
Component c = this.getParent();