Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
OlesiaSub committed Nov 5, 2022
1 parent e3135a9 commit dd99cf5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ class InnerUsageProcessor(private val graph: Graph) {
continue
}
deepTraversal(ch, origNode)
if (base(ch) == null && name(ch) != null && abstract(ch) == null
&& (line(ch) == line(node) || line(ch)?.toInt() == line(node)?.toInt()?.plus(1))
if (base(ch) == null && name(ch) != null && abstract(ch) == null &&
(line(ch) == line(node) || line(ch)?.toInt() == line(node)?.toInt()?.plus(1))
) {
FreeAttributesHolder.storage.add(FreeAttribute(name(ch)!!, origNode))
}
Expand Down

0 comments on commit dd99cf5

Please sign in to comment.