fix some compilation warnings
[transportpce.git] / servicehandler / src / test / java / org / opendaylight / transportpce / servicehandler / mappers / ServiceZEndConverter.java
index ed76c320c367ea968ebd6d6381f7937d097e456f..c830b2dda1c7fab045643fff3c0ba26975b3792d 100644 (file)
@@ -10,7 +10,7 @@ package org.opendaylight.transportpce.servicehandler.mappers;
 import org.opendaylight.yang.gen.v1.http.org.opendaylight.transportpce.stubrenderer.rev170426.service.implementation.request.input.ServiceZEnd;
 import org.opendaylight.yang.gen.v1.http.org.opendaylight.transportpce.stubrenderer.rev170426.service.implementation.request.input.ServiceZEndBuilder;
 
-public class ServiceZEndConverter {
+public final class ServiceZEndConverter {
     public static ServiceZEnd getStub(
         org.opendaylight.yang.gen.v1.http.org.transportpce.b.c._interface.servicepath.rev170426.service.implementation
         .request.input.ServiceZEnd concrete) {
@@ -40,4 +40,7 @@ public class ServiceZEndConverter {
         concreteBuilder.setTxDirection(stub.getTxDirection());
         return concreteBuilder.build();
     }
+
+    private ServiceZEndConverter(){
+    }
 }