Incorporated Rick's cleanup

This commit is contained in:
Lars Kühne 2002-10-25 06:57:57 +00:00
parent 91875d1901
commit 87e4f786a5
1 changed files with 2 additions and 2 deletions

View File

@ -116,12 +116,12 @@ public class ParseTreeInfoPanel extends JPanel
mParseTreeModel.setParseTree(parseTree);
}
catch (IOException ex) {
JOptionPane.showMessageDialog(
showErrorDialog(
aParent,
"Could not open " + aFile + ": " + ex.getMessage());
}
catch (ANTLRException ex) {
JOptionPane.showMessageDialog(
showErrorDialog(
aParent,
"Could not parse " + aFile + ": " + ex.getMessage());
}