Revert "add isKotlinSourceElement method to Source interface in order to recognize kotlin source elements during compilation"

This reverts commit c342f6870a.
This commit is contained in:
Michael Nedzelsky
2015-09-23 17:37:12 +03:00
parent 031a42ccf4
commit 2c952dcc22
6 changed files with 2 additions and 21 deletions
@@ -19,6 +19,5 @@ package org.jetbrains.kotlin.load.kotlin
import org.jetbrains.kotlin.descriptors.SourceElement
public class KotlinJvmBinarySourceElement(public val binaryClass: KotlinJvmBinaryClass) : SourceElement {
override fun isKotlinSourceElement(): Boolean = false
override fun toString() = javaClass.name + ": " + binaryClass.toString()
}