From 638e7682267af3c2db659136ad2406e3756a92f6 Mon Sep 17 00:00:00 2001 From: Andrey Breslav Date: Wed, 10 Dec 2014 16:18:22 +0300 Subject: [PATCH] Minor. Class renamed --- .../jet/lang/resolve/calls/tasks/TaskPrioritizer.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/frontend/src/org/jetbrains/jet/lang/resolve/calls/tasks/TaskPrioritizer.kt b/compiler/frontend/src/org/jetbrains/jet/lang/resolve/calls/tasks/TaskPrioritizer.kt index d230e441f13..aec155fe3d0 100644 --- a/compiler/frontend/src/org/jetbrains/jet/lang/resolve/calls/tasks/TaskPrioritizer.kt +++ b/compiler/frontend/src/org/jetbrains/jet/lang/resolve/calls/tasks/TaskPrioritizer.kt @@ -67,7 +67,7 @@ public class TaskPrioritizer(private val storageManager: StorageManager) { callableDescriptorCollectors: CallableDescriptorCollectors ): List> { val explicitReceiver = context.call.getExplicitReceiver() - val result = ResolutionTaskHolder(storageManager, context, MyPriorityProvider(context), tracing) + val result = ResolutionTaskHolder(storageManager, context, PriorityProviderImpl(context), tracing) val taskPrioritizerContext = TaskPrioritizerContext(name, result, context, context.scope, callableDescriptorCollectors) if (explicitReceiver is QualifierReceiver) { @@ -387,14 +387,14 @@ public class TaskPrioritizer(private val storageManager: StorageManager) { candidates: Collection>, tracing: TracingStrategy ): List> { - val result = ResolutionTaskHolder(storageManager, context, MyPriorityProvider(context), tracing) + val result = ResolutionTaskHolder(storageManager, context, PriorityProviderImpl(context), tracing) result.addCandidates { candidates } return result.getTasks() } - private class MyPriorityProvider(private val context: BasicCallResolutionContext) : + private class PriorityProviderImpl(private val context: BasicCallResolutionContext) : ResolutionTaskHolder.PriorityProvider> { override fun getPriority(candidate: ResolutionCandidate)