()
| 187 | return !Platform.isWindows() && !Platform.isMac(); |
| 188 | } |
| 189 | public static final boolean hasRuntimeExec() { |
| 190 | if (isWindowsCE() && "J9".equals(System.getProperty("java.vm.name"))) |
| 191 | return false; |
| 192 | return true; |
| 193 | } |
| 194 | public static final boolean is64Bit() { |
| 195 | String model = System.getProperty("sun.arch.data.model", |
| 196 | System.getProperty("com.ibm.vm.bitmode")); |
nothing calls this directly
no test coverage detected