Remove deprecated methods

This commit is contained in:
Mikhael Bogdanov
2021-12-23 10:02:19 +01:00
committed by Alexander Udalov
parent 27cfe11d55
commit 42a465efe2
@@ -128,17 +128,4 @@ interface CallResolutionInterceptorExtension {
dispatchReceiver: ReceiverValueWithSmartCastInfo?,
extensionReceiver: ReceiverValueWithSmartCastInfo?
): Collection<VariableDescriptor> = candidates
@Suppress("DeprecatedCallableAddReplaceWith", "DEPRECATION")
@Deprecated("Please use dedicated interceptVariableCandidates and interceptFunctionCandidates instead")
@JvmDefault
fun interceptCandidates(
candidates: Collection<FunctionDescriptor>,
scopeTower: ImplicitScopeTower,
resolutionContext: BasicCallResolutionContext,
resolutionScope: ResolutionScope,
callResolver: CallResolver?,
name: Name,
location: LookupLocation
): Collection<FunctionDescriptor> = candidates
}
}