fix some compilation warnings
[transportpce.git] / servicehandler / src / test / java / org / opendaylight / transportpce / servicehandler / mappers / ServiceAEndConverter.java
index 79439a7d10b4d3a25a0cc81196e1003655130b5d..471d0974f17123ad1eca97c16b89ff2dd05087a5 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.ServiceAEnd;
 import org.opendaylight.yang.gen.v1.http.org.opendaylight.transportpce.stubrenderer.rev170426.service.implementation.request.input.ServiceAEndBuilder;
 
-public class ServiceAEndConverter {
+public final class ServiceAEndConverter {
 
     public static ServiceAEnd getStub(org.opendaylight.yang.gen.v1.http.org.transportpce.b.c._interface.servicepath
             .rev170426.service.implementation.request.input.ServiceAEnd concrete) {
@@ -39,4 +39,7 @@ public class ServiceAEndConverter {
         concreteBuilder.setTxDirection(stub.getTxDirection());
         return concreteBuilder.build();
     }
+
+    private ServiceAEndConverter() {
+    }
 }