Move WriterParameters.tagged
[netconf.git] / restconf / restconf-nb-bierman02 / src / main / java / org / opendaylight / netconf / sal / restconf / impl / RestconfImpl.java
index ba7195daabacbb243d459d81c988c06d10a2562d..fb7a8b03423b2c8b560c46089420d2982a9a8f2d 100644 (file)
@@ -687,6 +687,8 @@ public final class RestconfImpl implements RestconfService {
                     break;
             }
         }
+
+        // TODO: this flag is always ignored
         boolean tagged = false;
         if (withDefaUsed) {
             if ("report-all-tagged".equals(withDefa)) {
@@ -710,8 +712,7 @@ public final class RestconfImpl implements RestconfService {
         if (data == null) {
             throw dataMissing(identifier);
         }
-        return new NormalizedNodeContext(iiWithData, data,
-                QueryParametersParser.parseWriterParameters(uriInfo, tagged));
+        return new NormalizedNodeContext(iiWithData, data, QueryParametersParser.parseWriterParameters(uriInfo));
     }
 
     @Override