(String title)
| 55 | }; |
| 56 | |
| 57 | public static GUIMain getInstance(String title) throws Exception { |
| 58 | if (instance == null) { |
| 59 | |
| 60 | instance = new GUIMain(title); |
| 61 | } |
| 62 | return instance; |
| 63 | } |
| 64 | |
| 65 | public static GUIMain getInstance() throws Exception { |
| 66 | if (instance == null) { |
no outgoing calls
no test coverage detected