Changeset 806 for java/installer2/src/net/oni2/aeinstaller/gui/MainWin.java
- Timestamp:
- Apr 12, 2013, 6:21:37 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
java/installer2/src/net/oni2/aeinstaller/gui/MainWin.java
r805 r806 11 11 import java.io.File; 12 12 import java.io.FileNotFoundException; 13 import java.io.IOException; 14 import java.net.URI; 15 import java.net.URISyntaxException; 13 16 import java.net.URL; 14 17 import java.util.Date; … … 403 406 new AboutDialog().setVisible(true); 404 407 } 408 409 @SuppressWarnings("unused") 410 private void showHelp() { 411 try { 412 Desktop.getDesktop().browse(new URI("http://wiki.oni2.net/AEI")); 413 } catch (IOException e) { 414 e.printStackTrace(); 415 } catch (URISyntaxException e) { 416 e.printStackTrace(); 417 } 418 } 405 419 406 420 private JFileChooser getConfigOpenSaveDialog(boolean save) {
Note:
See TracChangeset
for help on using the changeset viewer.