Commit 498537b6 authored by Stephane Nicoll's avatar Stephane Nicoll

Merge pull request #10080 from izeye:unused-20170826

* pr/10080:
  Remove SystemPropertiesHandler.properties
parents a9dc0d29 9dd7184b
...@@ -284,13 +284,10 @@ public final class TestPropertyValues { ...@@ -284,13 +284,10 @@ public final class TestPropertyValues {
*/ */
private class SystemPropertiesHandler implements Closeable { private class SystemPropertiesHandler implements Closeable {
private final Map<String, Object> properties;
private final Map<String, String> previous; private final Map<String, String> previous;
SystemPropertiesHandler() { SystemPropertiesHandler() {
this.properties = new LinkedHashMap<>(TestPropertyValues.this.properties); this.previous = apply(TestPropertyValues.this.properties);
this.previous = apply(this.properties);
} }
private Map<String, String> apply(Map<String, ?> 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