(String name)
| 60 | } |
| 61 | |
| 62 | public static boolean getBoolean(String name) { |
| 63 | return parseBoolean(System.getProperty(name)); |
| 64 | } |
| 65 | |
| 66 | public static boolean parseBoolean(String string) { |
| 67 | return string != null && string.equalsIgnoreCase("true"); |
no test coverage detected