InstanceIdentifierContext does not take generics
[netconf.git] / restconf / restconf-nb-rfc8040 / src / main / java / org / opendaylight / restconf / nb / rfc8040 / jersey / providers / patch / AbstractPatchBodyReader.java
index c994239cd533fb45c02a5612b7b3febf6046df26..3f12e5a3f6763adc11c4375f3ae076f9a0811267 100644 (file)
@@ -25,7 +25,7 @@ abstract class AbstractPatchBodyReader extends AbstractIdentifierAwareJaxRsProvi
     }
 
     @Override
-    protected final PatchContext emptyBody(final InstanceIdentifierContext<?> path) {
+    protected final PatchContext emptyBody(final InstanceIdentifierContext path) {
         return new PatchContext(path, null, null);
     }
 }