This commit is contained in:
jlin16 2007-01-24 09:59:00 +00:00
parent 16046b7615
commit 25232e9cb3
1 changed files with 3 additions and 1 deletions

View File

@ -457,7 +457,9 @@ public class FpdModuleSA extends JDialog implements ActionListener {
instancesName += " ";
}
String msg = new ImproperInstanceException(lcd.className, instancesName, lcd.supArchs, lcd.supModTypes).getMessage();
errorMsg.add(msg);
if (!errorMsg.contains(msg)) {
errorMsg.add(msg);
}
}
}
}