Fix findbugs violations in netconf
[netconf.git] / netconf / callhome-provider / src / main / java / org / opendaylight / netconf / callhome / mount / Configuration.java
index 713b7ec4a5837c7dcf1f038f3cf78bc0a41eb90e..14ab22a7f66af1978e4a0cf5a209de0fb9b843ae 100644 (file)
@@ -69,16 +69,13 @@ public class Configuration {
         }
     }
 
-    private final String path;
     private Properties properties;
 
     public Configuration() {
-        path = "<no-path>";
         properties = new Properties();
     }
 
     public Configuration(final String path) throws ConfigurationException {
-        this.path = path;
         try {
             this.properties = readFromPath(path);
         } catch (IOException ioe) {