Hide CodecContext methods
[mdsal.git] / binding / mdsal-binding-dom-codec / src / main / java / org / opendaylight / mdsal / binding / dom / codec / impl / CodecContext.java
index 55205517c65ef7bb6beacba8f740d8bad1fb83a6..c0e5dadc04631bd45d9ee60018d05073ca429c55 100644 (file)
@@ -31,7 +31,7 @@ abstract sealed class CodecContext implements BindingCodecTreeNode
      *
      * @return NodeIdentifier of node, or {@code null} if not applicable
      */
-    protected abstract @Nullable NodeIdentifier getDomPathArgument();
+    abstract @Nullable NodeIdentifier getDomPathArgument();
 
     /**
      * Return the default value object. Implementations of this method are explicitly allowed to throw unchecked
@@ -43,5 +43,5 @@ abstract sealed class CodecContext implements BindingCodecTreeNode
         return null;
     }
 
-    protected abstract Object deserializeObject(NormalizedNode normalizedNode);
+    abstract Object deserializeObject(NormalizedNode normalizedNode);
 }