fix some compilation warnings
[transportpce.git] / servicehandler / src / test / java / org / opendaylight / transportpce / servicehandler / mappers / ServiceImplementationRequestInputConverter.java
index cea7a31c4e05512368b318d127bd5a4a3812c773..985cb64c93c902b45cffaa52194dc33418a475ae 100644 (file)
@@ -10,7 +10,7 @@ package org.opendaylight.transportpce.servicehandler.mappers;
 import org.opendaylight.yang.gen.v1.http.org.opendaylight.transportpce.stubrenderer.rev170426.ServiceImplementationRequestInput;
 import org.opendaylight.yang.gen.v1.http.org.opendaylight.transportpce.stubrenderer.rev170426.ServiceImplementationRequestInputBuilder;
 
-public class ServiceImplementationRequestInputConverter {
+public final class ServiceImplementationRequestInputConverter {
 
     public static ServiceImplementationRequestInput getStub(org.opendaylight.yang.gen.v1.http.org.transportpce
                 .b.c._interface.servicepath.rev170426.ServiceImplementationRequestInput concrete) {
@@ -37,4 +37,7 @@ public class ServiceImplementationRequestInputConverter {
         return concreteBuilder.build();
     }
 
+    private ServiceImplementationRequestInputConverter() {
+    }
+
 }