Migrate mdsal-binding-dom-codec to JDT annotations
[mdsal.git] / binding / mdsal-binding-dom-codec / src / main / java / org / opendaylight / mdsal / binding / dom / codec / api / BindingCodecTree.java
index 4c3210722433cd59a77fd185155260e65584cbda..5ac2cbb83618b3d516eda3ca1534864860288210 100644 (file)
@@ -7,7 +7,7 @@
  */
 package org.opendaylight.mdsal.binding.dom.codec.api;
 
-import javax.annotation.Nullable;
+import org.eclipse.jdt.annotation.Nullable;
 import org.opendaylight.yangtools.yang.binding.DataObject;
 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
@@ -21,13 +21,9 @@ import org.opendaylight.yangtools.yang.model.api.SchemaPath;
 // TODO: Add more detailed documentation
 public interface BindingCodecTree {
 
-    @Nullable
-    <T extends DataObject> BindingCodecTreeNode<T> getSubtreeCodec(InstanceIdentifier<T> path);
+    @Nullable <T extends DataObject> BindingCodecTreeNode<T> getSubtreeCodec(InstanceIdentifier<T> path);
 
-    @Nullable
-    BindingCodecTreeNode<?> getSubtreeCodec(YangInstanceIdentifier path);
-
-    @Nullable
-    BindingCodecTreeNode<?> getSubtreeCodec(SchemaPath path);
+    @Nullable BindingCodecTreeNode<?> getSubtreeCodec(YangInstanceIdentifier path);
 
+    @Nullable BindingCodecTreeNode<?> getSubtreeCodec(SchemaPath path);
 }