Fix compilation after moving to idea 173

This commit is contained in:
Vyacheslav Gerasimov
2017-08-14 15:37:26 +03:00
committed by Nikolay Krasko
parent 8f7a354592
commit 35fa8efbf3
8 changed files with 34 additions and 11 deletions
@@ -21,6 +21,7 @@ import com.intellij.execution.process.ProcessOutputTypes
import com.intellij.openapi.util.Key
import com.intellij.openapi.util.TextRange
import com.intellij.openapi.util.text.StringUtil
import org.jetbrains.annotations.NotNull
import org.jetbrains.kotlin.console.actions.logError
import org.jetbrains.kotlin.diagnostics.Severity
import org.w3c.dom.Element
@@ -47,7 +48,7 @@ class ReplOutputHandler(
override fun isSilentlyDestroyOnClose() = true
override fun notifyTextAvailable(text: String, key: Key<*>?) {
override fun notifyTextAvailable(text: String, key: Key<*>) {
// hide warning about adding test folder to classpath
if (text.startsWith("warning: classpath entry points to a non-existent location")) return