add curly brackets (formatting)

- add curly brackets around single line conditional statements
This commit is contained in:
Stefaan Dutry
2018-01-03 22:53:02 +01:00
parent 38e3734930
commit 7a251ddca9
@@ -1261,8 +1261,9 @@ public abstract class UIBean extends Component {
for (Object o : params.entrySet()) {
Map.Entry entry = (Map.Entry) o;
String key = (String) entry.getKey();
if(!isValidTagAttribute(key) && !key.equals("dynamicAttributes"))
if (!isValidTagAttribute(key) && !key.equals("dynamicAttributes")) {
dynamicAttributes.put(key, entry.getValue());
}
}
}