This method tries to guess if we are on a Mac OS X system. It does this by checking the value of System.getProperty("os.name") . Note that if this method returns true, #runningOnUnix() will also return true (i.e. Mac is considered a Unix platform) but the reverse is not necessarily
()
| 992 | * not necessarily the case. |
| 993 | */ |
| 994 | public static boolean runningOnMac() { |
| 995 | return System.getProperty("os.name").toLowerCase().startsWith("mac os x"); |
| 996 | } |
| 997 | |
| 998 | /** |
| 999 | * Returns the list of CREOLE directories the system knows about (either |
no test coverage detected