Adapt to new A1Client interface
[nonrtric.git] / policy-agent / src / main / java / org / oransc / policyagent / controllers / PolicyController.java
index c0932a4..bee56b0 100644 (file)
@@ -17,6 +17,7 @@
  * limitations under the License.
  * ========================LICENSE_END===================================
  */
+
 package org.oransc.policyagent.controllers;
 
 import com.google.gson.Gson;
@@ -154,7 +155,6 @@ public class PolicyController {
         Vector<PolicyTypeInfo> v = new Vector<>(types.size());
         for (PolicyType t : types) {
             PolicyTypeInfo policyInfo = ImmutablePolicyTypeInfo.builder() //
-                .schema(t.jsonSchema()) //
                 .name(t.name()) //
                 .build();
             v.add(policyInfo);