Fix most bgp-parser-spi checkstyle violations
[bgpcep.git] / bgp / parser-spi / src / main / java / org / opendaylight / protocol / bgp / parser / spi / pojo / SimpleAddressFamilyRegistry.java
index c99eab19dc154e6f48d9210792dd49c078d71a94..10e146195070ee8348e1cb535c6e4423c6ecdffd 100644 (file)
@@ -12,7 +12,8 @@ import org.opendaylight.protocol.bgp.parser.spi.AddressFamilyRegistry;
 import org.opendaylight.protocol.util.Values;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.types.rev180329.AddressFamily;
 
-final class SimpleAddressFamilyRegistry extends AbstractFamilyRegistry<AddressFamily, Integer> implements AddressFamilyRegistry {
+final class SimpleAddressFamilyRegistry extends AbstractFamilyRegistry<AddressFamily, Integer>
+        implements AddressFamilyRegistry {
     AutoCloseable registerAddressFamily(final Class<? extends AddressFamily> clazz, final int number) {
         Preconditions.checkArgument(number >= 0 && number <= Values.UNSIGNED_SHORT_MAX_VALUE);
         return super.registerFamily(clazz, number);