Fix odlparent 3 Checkstyle issues
[groupbasedpolicy.git] / neutron-mapper / src / main / java / org / opendaylight / groupbasedpolicy / neutron / mapper / infrastructure / ServiceUtil.java
index 31c6c5423e563d99e3fed61f0f1054020196efd9..9c5ff55626e97995af7dcb905e301cd69592bb98 100644 (file)
@@ -9,12 +9,9 @@
 package org.opendaylight.groupbasedpolicy.neutron.mapper.infrastructure;
 
 import com.google.common.collect.ImmutableList;
-
 import java.util.ArrayList;
 import java.util.List;
-
 import javax.annotation.Nullable;
-
 import org.opendaylight.groupbasedpolicy.api.sf.EtherTypeClassifierDefinition;
 import org.opendaylight.groupbasedpolicy.api.sf.IpProtoClassifierDefinition;
 import org.opendaylight.groupbasedpolicy.api.sf.L4ClassifierDefinition;
@@ -61,8 +58,9 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.policy.rev
 import org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.policy.rev140421.tenants.tenant.policy.subject.feature.instances.ClassifierInstance;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.policy.rev140421.tenants.tenant.policy.subject.feature.instances.ClassifierInstanceBuilder;
 
+// This is sub-classed
+@SuppressWarnings("checkstyle:HideUtilityClassConstructor")
 public class ServiceUtil {
-
     protected static Contract createContract(ContractId cid, List<Subject> subjects, Description description) {
         return new ContractBuilder().setId(cid).setSubject(subjects).setDescription(description).build();
     }