Skip to content

Commit

Permalink
style: remove braces
Browse files Browse the repository at this point in the history
  • Loading branch information
frekw committed Oct 12, 2021
1 parent bf7c552 commit 8a224d7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ object FragmentValidator {
else true
else if (isListType(t2))
true
else if (isLeafType(t1) && isLeafType(t2)) {
else if (isLeafType(t1) && isLeafType(t2))
t1.name != t2.name
} else if (!isComposite(t1) || !isComposite(t2))
else if (!isComposite(t1) || !isComposite(t2))
true
else
false
Expand Down

0 comments on commit 8a224d7

Please sign in to comment.