checkStyleViolationSeverity=error implemented for mdsal-dom-inmemory-datastore
[mdsal.git] / dom / mdsal-dom-inmemory-datastore / src / main / java / org / opendaylight / mdsal / dom / store / inmemory / DataTreeModificationCursorAdaptor.java
index 0a90f13d422ab4bac1d59578a44880c1a4274dfe..a4986e714d5971b4b83ff786c81cfc4d7dc91007 100644 (file)
@@ -28,7 +28,8 @@ final class DataTreeModificationCursorAdaptor extends ForwardingObject implement
         return new DataTreeModificationCursorAdaptor(dataTreeCursor);
     }
 
-    protected final DataTreeModificationCursor delegate() {
+    @Override
+    protected DataTreeModificationCursor delegate() {
         return delegate;
     }
 
@@ -42,6 +43,16 @@ final class DataTreeModificationCursorAdaptor extends ForwardingObject implement
         delegate.enter(child);
     }
 
+    @Override
+    public void enter(final Iterable<PathArgument> path) {
+        delegate.enter(path);
+    }
+
+    @Override
+    public void enter(final PathArgument... path) {
+        delegate.enter(path);
+    }
+
     @Override
     public void merge(final PathArgument child, final NormalizedNode<?, ?> data) {
         delegate.merge(child, data);
@@ -52,11 +63,6 @@ final class DataTreeModificationCursorAdaptor extends ForwardingObject implement
         delegate.write(child, data);
     }
 
-    @Override
-    public void enter(final Iterable<PathArgument> path) {
-        delegate.enter(path);
-    }
-
     @Override
     public void exit() {
         delegate.exit();
@@ -76,8 +82,4 @@ final class DataTreeModificationCursorAdaptor extends ForwardingObject implement
         delegate.close();
     }
 
-    @Override
-    public void enter(final PathArgument... path) {
-        delegate.enter(path);
-    }
 }