fix some compilation warnings
[transportpce.git] / servicehandler / src / test / java / org / opendaylight / transportpce / servicehandler / mappers / PathDescriptionConverter.java
index 92d8f3a258fa9a7843c7bca55db80a49ad405533..c1a949f57c1db64c6e756b2dd4ef91dee2c5447c 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.PathDescription;
 import org.opendaylight.yang.gen.v1.http.org.opendaylight.transportpce.stubrenderer.rev170426.service.implementation.request.input.PathDescriptionBuilder;
 
-public class PathDescriptionConverter {
+public final class PathDescriptionConverter {
 
     public static PathDescription getStub(org.opendaylight.yang.gen.v1.http.org.transportpce.b.c._interface
             .servicepath.rev170426.service.implementation.request.input.PathDescription concrete) {
@@ -31,4 +31,7 @@ public class PathDescriptionConverter {
         concreteBuilder.setZToADirection(stub.getZToADirection());
         return concreteBuilder.build();
     }
+
+    private PathDescriptionConverter() {
+    }
 }