Fix AbstractValueNodeModificationStrategy message typos 24/72124/2
authorRobert Varga <robert.varga@pantheon.tech>
Mon, 21 May 2018 17:32:41 +0000 (19:32 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Mon, 21 May 2018 18:16:47 +0000 (20:16 +0200)
We are missing a space in the message, fix that.

Change-Id: Iddc718ebd04d41fa6f994aa9310e9f8bf9b55e5c
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
yang/yang-data-impl/src/main/java/org/opendaylight/yangtools/yang/data/impl/schema/tree/AbstractValueNodeModificationStrategy.java

index f7ff505d3b54ef7e17bbfb1ced44f233acf116fc..daa18d1fb3b5757a4250afb2602cf63b2743c5af 100644 (file)
@@ -39,7 +39,7 @@ abstract class AbstractValueNodeModificationStrategy<T extends DataSchemaNode> e
     @Override
     public final Optional<ModificationApplyOperation> getChild(final PathArgument child) {
         throw new UnsupportedOperationException("Node " + schema.getPath()
-                + "is leaf type node. Child nodes not allowed");
+                + " is leaf type node. Child nodes not allowed");
     }
 
     @Override
@@ -48,10 +48,10 @@ abstract class AbstractValueNodeModificationStrategy<T extends DataSchemaNode> e
     }
 
     @Override
-    protected final TreeNode applyTouch(final ModifiedNode modification,
-            final TreeNode currentMeta, final Version version) {
+    protected final TreeNode applyTouch(final ModifiedNode modification, final TreeNode currentMeta,
+            final Version version) {
         throw new UnsupportedOperationException("Node " + schema.getPath()
-                + "is leaf type node. Subtree change is not allowed.");
+                + " is leaf type node. Subtree change is not allowed.");
     }
 
     @Override