From fecb64560b53717f4d71ed0405a7364c5694bd52 Mon Sep 17 00:00:00 2001 From: Denis Zharkov Date: Fri, 11 Mar 2016 19:10:30 +0300 Subject: [PATCH] Minor. Decrease method visibility --- .../kotlin/load/java/lazy/descriptors/LazyJavaScope.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/descriptor.loader.java/src/org/jetbrains/kotlin/load/java/lazy/descriptors/LazyJavaScope.kt b/core/descriptor.loader.java/src/org/jetbrains/kotlin/load/java/lazy/descriptors/LazyJavaScope.kt index 73e7478daf6..9004728d838 100644 --- a/core/descriptor.loader.java/src/org/jetbrains/kotlin/load/java/lazy/descriptors/LazyJavaScope.kt +++ b/core/descriptor.loader.java/src/org/jetbrains/kotlin/load/java/lazy/descriptors/LazyJavaScope.kt @@ -110,7 +110,7 @@ abstract class LazyJavaScope(protected val c: LazyJavaResolverContext) : MemberS valueParameters: List ): MethodSignatureData - fun resolveMethodToFunctionDescriptor(method: JavaMethod): JavaMethodDescriptor { + protected fun resolveMethodToFunctionDescriptor(method: JavaMethod): JavaMethodDescriptor { val annotations = c.resolveAnnotations(method) val functionDescriptorImpl = JavaMethodDescriptor.createJavaMethod( ownerDescriptor, annotations, method.name, c.components.sourceElementFactory.source(method)