Enable checkstyle in yang-model-util
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / type / BitsTypeBuilder.java
index 362f2b8681cfa47d6e8e87a0fd8cde7073aa4a1c..c4ac7be534058cabe06aae53e52e17861004f9da 100644 (file)
@@ -43,8 +43,8 @@ public final class BitsTypeBuilder extends AbstractRestrictedTypeBuilder<BitsTyp
         for (Bit baseTypeBit : getBaseType().getBits()) {
             if (item.getName().equals(baseTypeBit.getName())) {
                 if (item.getPosition() != baseTypeBit.getPosition()) {
-                    throw new InvalidBitDefinitionException(item, "Position of bit '%s' must be the same as the " +
-                            "position of corresponding bit in the base bits type %s.", item.getName(),
+                    throw new InvalidBitDefinitionException(item, "Position of bit '%s' must be the same as the "
+                            "position of corresponding bit in the base bits type %s.", item.getName(),
                             getBaseType().getQName());
                 }
                 isASubsetOfBaseBits = true;