mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[groovy] minor code style fix
This commit is contained in:
+2
-4
@@ -1,6 +1,4 @@
|
||||
/*
|
||||
* Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
||||
*/
|
||||
// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
||||
package org.jetbrains.plugins.groovy.lang.resolve
|
||||
|
||||
import com.intellij.psi.PsiPolyVariantReference
|
||||
@@ -24,7 +22,7 @@ abstract class DependentResolver<T : PsiPolyVariantReference> : ResolveCache.Pol
|
||||
private val resolvingDependencies = ThreadLocal.withInitial { mutableSetOf<PsiPolyVariantReference>() }
|
||||
}
|
||||
|
||||
override final fun resolve(ref: T, incomplete: Boolean): Array<out ResolveResult> {
|
||||
final override fun resolve(ref: T, incomplete: Boolean): Array<out ResolveResult> {
|
||||
val dependencies = resolveDependencies(ref, incomplete)
|
||||
val result = doResolve(ref, incomplete)
|
||||
dependencies?.clear()
|
||||
|
||||
Reference in New Issue
Block a user