diff --git a/src/main/kotlin/org/objectionary/aoi/process/InnerUsageProcessor.kt b/src/main/kotlin/org/objectionary/aoi/process/InnerUsageProcessor.kt index cf72a0b..f5e8baa 100644 --- a/src/main/kotlin/org/objectionary/aoi/process/InnerUsageProcessor.kt +++ b/src/main/kotlin/org/objectionary/aoi/process/InnerUsageProcessor.kt @@ -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)) }