Minor. Moved stuff from companion object to top-level.

This commit is contained in:
Evgeny Gerashchenko
2015-04-17 15:26:50 +03:00
parent 11020cacfd
commit 5eadf4db17
@@ -78,12 +78,12 @@ public class KotlinLineMarkerProvider : LineMarkerProvider {
collectOverridingAccessors(functions, result) collectOverridingAccessors(functions, result)
collectOverridingPropertiesAccessors(properties, result) collectOverridingPropertiesAccessors(properties, result)
} }
}
companion object { private val OVERRIDING_MARK: Icon = AllIcons.Gutter.OverridingMethod
public val OVERRIDING_MARK: Icon = AllIcons.Gutter.OverridingMethod private val IMPLEMENTING_MARK: Icon = AllIcons.Gutter.ImplementingMethod
public val IMPLEMENTING_MARK: Icon = AllIcons.Gutter.ImplementingMethod private val OVERRIDDEN_MARK: Icon = AllIcons.Gutter.OverridenMethod
protected val OVERRIDDEN_MARK: Icon = AllIcons.Gutter.OverridenMethod private val IMPLEMENTED_MARK: Icon = AllIcons.Gutter.ImplementedMethod
protected val IMPLEMENTED_MARK: Icon = AllIcons.Gutter.ImplementedMethod
private val SUBCLASSED_CLASS = MarkerType( private val SUBCLASSED_CLASS = MarkerType(
{ getPsiClass(it)?.let { MarkerType.getSubclassedClassTooltip(it) } }, { getPsiClass(it)?.let { MarkerType.getSubclassedClassTooltip(it) } },
@@ -218,5 +218,3 @@ public class KotlinLineMarkerProvider : LineMarkerProvider {
)) ))
} }
} }
}
}