Enable checkstyle in yang-model-util
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / type / EnumerationTypeBuilder.java
index c0d368ed23617a967071d78ed257566fd7cadbce..03d077c5ce6de082caa076ff954dc7c28a2518db 100644 (file)
@@ -43,8 +43,8 @@ public final class EnumerationTypeBuilder extends AbstractRestrictedTypeBuilder<
         for (EnumPair baseTypeEnumPair : getBaseType().getValues()) {
             if (item.getName().equals(baseTypeEnumPair.getName())) {
                 if (item.getValue() != baseTypeEnumPair.getValue()) {
-                    throw new InvalidEnumDefinitionException(item, "Value of enum '%s' must be the same as the value" +
-                            " of corresponding enum in the base enumeration type %s.", item.getName(),
+                    throw new InvalidEnumDefinitionException(item, "Value of enum '%s' must be the same as the value"
+                            " of corresponding enum in the base enumeration type %s.", item.getName(),
                             getBaseType().getQName());
                 }
                 isASubsetOfBaseEnums = true;