Commit 9dd7184b authored by Johnny Lim's avatar Johnny Lim Committed by Stephane Nicoll

Remove SystemPropertiesHandler.properties

Closes gh-10080
parent a9dc0d29
......@@ -284,13 +284,10 @@ public final class TestPropertyValues {
*/
private class SystemPropertiesHandler implements Closeable {
private final Map<String, Object> properties;
private final Map<String, String> previous;
SystemPropertiesHandler() {
this.properties = new LinkedHashMap<>(TestPropertyValues.this.properties);
this.previous = apply(this.properties);
this.previous = apply(TestPropertyValues.this.properties);
}
private Map<String, String> apply(Map<String, ?> properties) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment