true if running on linux.
()
| 270 | * true if running on linux. |
| 271 | */ |
| 272 | static public boolean isLinux() { |
| 273 | //return PApplet.platform == PConstants.LINUX; |
| 274 | return System.getProperty("os.name").indexOf("Linux") != -1; //$NON-NLS-1$ //$NON-NLS-2$ |
| 275 | } |
| 276 | |
| 277 | |
| 278 | // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . |
no outgoing calls
no test coverage detected