()
| 93 | } |
| 94 | |
| 95 | private void startGUI() throws Exception { |
| 96 | String version = "1.0.0"; |
| 97 | InputStream versionStream = getClass().getResourceAsStream("/version"); |
| 98 | if (versionStream != null) { |
| 99 | |
| 100 | version = IOUtils.toString(versionStream); |
| 101 | } |
| 102 | gui = GUIMain.getInstance(String.format("PacketProxy %s", version)); |
| 103 | gui.setVisible(true); |
| 104 | } |
| 105 | } |
no test coverage detected