Fix checkstyle if-statements must use braces in yang-parser-impl
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / builder / impl / UsesNodeBuilderImpl.java
index f31909725ca829b6e56d38d6009de4f2e5e967d9..ce9ccc2cc0dbd8c8ce40e0e8c0d72fdaf686c6bf 100644 (file)
@@ -65,8 +65,9 @@ public final class UsesNodeBuilderImpl extends AbstractBuilder implements UsesNo
         // AUGMENTATIONS
         final Set<AugmentationSchema> augments = new HashSet<>();
         for (AugmentationSchemaBuilder builder : augmentationBuilders) {
-            if (!builder.isUnsupportedTarget())
+            if (!builder.isUnsupportedTarget()) {
                 augments.add(builder.build());
+            }
         }
         instance.augmentations = ImmutableSet.copyOf(augments);