Browse Source

XDoclet does not like the semicolons on these lines

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273744 13f79535-47bb-0310-9956-ffa450edef68
master
Erik Hatcher 22 years ago
parent
commit
b57d0dcbc5
1 changed files with 7 additions and 7 deletions
  1. +7
    -7
      src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJAntToolGUI.java

+ 7
- 7
src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJAntToolGUI.java View File

@@ -210,7 +210,7 @@ public class VAJAntToolGUI extends Frame {
logException(error);
}

getMessageTextArea().append(lineSeparator + "Total time: "
getMessageTextArea().append(lineSeparator + "Total time: "
+ DateUtils.formatElapsedTime(System.currentTimeMillis() - startTime));
}

@@ -428,12 +428,12 @@ public class VAJAntToolGUI extends Frame {
handleException(exc);
}
}
public void windowActivated(WindowEvent e) {};
public void windowClosed(WindowEvent e) {};
public void windowDeactivated(WindowEvent e) {};
public void windowDeiconified(WindowEvent e) {};
public void windowIconified(WindowEvent e) {};
public void windowOpened(WindowEvent e) {};
public void windowActivated(WindowEvent e) {}
public void windowClosed(WindowEvent e) {}
public void windowDeactivated(WindowEvent e) {}
public void windowDeiconified(WindowEvent e) {}
public void windowIconified(WindowEvent e) {}
public void windowOpened(WindowEvent e) {}
}

/**


Loading…
Cancel
Save