Skip to content

Commit

Permalink
Issue #17: surrounding if condition with curly braces.
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip Zoio committed Aug 19, 2020
1 parent aa88f06 commit a1691cf
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,9 @@ public Object getAttribute(String name) {

Object attribute = super.getAttribute(name);

if (attribute == null)
if (attribute == null) {
return null;
}

ClassLoader attributeClassLoader = attribute.getClass().getClassLoader();

Expand Down

0 comments on commit a1691cf

Please sign in to comment.