Bug 8153: Enforce check-style rules for netconf - netconf-topology-singleton
[netconf.git] / netconf / netconf-topology-singleton / src / main / java / org / opendaylight / netconf / topology / singleton / messages / SchemaPathMessage.java
index 036f4e2a02b351d736db393524dcb64088187cea..319b375340262e221b9dc4e0027fbbc88777ec79 100644 (file)
@@ -39,7 +39,7 @@ public class SchemaPathMessage implements Serializable {
 
         private SchemaPathMessage schemaPathMessage;
 
-        public Proxy() {
+        Proxy() {
             //due to Externalizable
         }
 
@@ -51,8 +51,8 @@ public class SchemaPathMessage implements Serializable {
         public void writeExternal(final ObjectOutput out) throws IOException {
             out.writeInt(Iterables.size(schemaPathMessage.getSchemaPath().getPathTowardsRoot()));
 
-            for (final QName qName : schemaPathMessage.getSchemaPath().getPathTowardsRoot()) {
-                out.writeObject(qName);
+            for (final QName qualifiedName : schemaPathMessage.getSchemaPath().getPathTowardsRoot()) {
+                out.writeObject(qualifiedName);
             }
 
             out.writeBoolean(schemaPathMessage.getSchemaPath().isAbsolute());