Sets a system property if it has not been set before. @param name name of the property @param value value
(final String name, final String value)
| 208 | * @param value value |
| 209 | */ |
| 210 | public static void setSystem(final String name, final String value) { |
| 211 | if(System.getProperty(name) == null) System.setProperty(name, value); |
| 212 | } |
| 213 | |
| 214 | /** |
| 215 | * Returns the attributes from the MANIFEST.MF file. |
no test coverage detected