()
| 25 | private Gui gui; |
| 26 | |
| 27 | public static boolean isUnix() { |
| 28 | String OS = System.getProperty("os.name") |
| 29 | .toLowerCase(); |
| 30 | return (OS.indexOf("nix") >= 0 || OS.indexOf("nux") >= 0 || OS.indexOf("aix") > 0); |
| 31 | } |
| 32 | |
| 33 | public static void main(String[] args) { |
| 34 | new Main(); |
no outgoing calls
no test coverage detected