Minor: Drop unused class

This commit is contained in:
Alexey Sedunov
2015-06-26 18:22:49 +03:00
parent 161539f3da
commit e9b2732aa9
@@ -36,16 +36,3 @@ public class JavaMethodKotlinCallUsage(
javaMethodChangeInfo: JetChangeInfo): JavaMethodKotlinUsageWithDelegate<JetCallElement>(callElement, javaMethodChangeInfo) {
override protected val delegateUsage = JetFunctionCallUsage(psiElement, javaMethodChangeInfo.methodDescriptor.originalPrimaryCallable)
}
public class JavaMethodKotlinDerivedDefinitionUsage(
function: JetFunction,
functionDescriptor: FunctionDescriptor,
javaMethodChangeInfo: JetChangeInfo): JavaMethodKotlinUsageWithDelegate<JetFunction>(function, javaMethodChangeInfo) {
@suppress("CAST_NEVER_SUCCEEDS")
override protected val delegateUsage = JetCallableDefinitionUsage(
psiElement,
functionDescriptor,
javaMethodChangeInfo.methodDescriptor.originalPrimaryCallable,
null
)
}