No skipping of super and this expression on copy/paste needed (probably has been copied from java version before)

This commit is contained in:
Valentin Kipyatkov
2015-02-10 18:45:32 +03:00
parent 1912f5b919
commit b4a8be4a7e
@@ -313,9 +313,7 @@ public class KotlinCopyPasteReferenceProcessor() : CopyPastePostProcessor<Refere
private val IGNORE_REFERENCES_INSIDE: Array<Class<out JetElement>?> = array(
javaClass<JetImportDirective>(),
javaClass<JetPackageDirective>(),
javaClass<JetSuperExpression>(),
javaClass<JetThisExpression>()
javaClass<JetPackageDirective>()
)
}