From 171cdfe08ada0f4f7454fad5e413b3c840196a25 Mon Sep 17 00:00:00 2001 From: Mikhail Glukhikh Date: Tue, 26 Jan 2016 13:34:22 +0300 Subject: [PATCH] Unnecessary comments removed --- .../cfg/pseudocode/instructions/eval/accessInstructions.kt | 1 - .../cfg/pseudocode/instructions/eval/operationInstructions.kt | 1 - 2 files changed, 2 deletions(-) diff --git a/compiler/frontend/src/org/jetbrains/kotlin/cfg/pseudocode/instructions/eval/accessInstructions.kt b/compiler/frontend/src/org/jetbrains/kotlin/cfg/pseudocode/instructions/eval/accessInstructions.kt index e920098bf48..2c7e3d07beb 100644 --- a/compiler/frontend/src/org/jetbrains/kotlin/cfg/pseudocode/instructions/eval/accessInstructions.kt +++ b/compiler/frontend/src/org/jetbrains/kotlin/cfg/pseudocode/instructions/eval/accessInstructions.kt @@ -103,7 +103,6 @@ class WriteValueInstruction( val rValue: PseudoValue ) : AccessValueInstruction(assignment, lexicalScope, target, receiverValues) { override val inputValues: List - // as is necessary: see KT-10384 get() = (receiverValues.keys as Collection) + rValue override fun accept(visitor: InstructionVisitor) { diff --git a/compiler/frontend/src/org/jetbrains/kotlin/cfg/pseudocode/instructions/eval/operationInstructions.kt b/compiler/frontend/src/org/jetbrains/kotlin/cfg/pseudocode/instructions/eval/operationInstructions.kt index a7bfdc2aefe..1ed0195976b 100644 --- a/compiler/frontend/src/org/jetbrains/kotlin/cfg/pseudocode/instructions/eval/operationInstructions.kt +++ b/compiler/frontend/src/org/jetbrains/kotlin/cfg/pseudocode/instructions/eval/operationInstructions.kt @@ -60,7 +60,6 @@ class CallInstruction private constructor( override val receiverValues: Map, val arguments: Map ) : OperationInstruction(element, lexicalScope, (receiverValues.keys as Collection) + arguments.keys), InstructionWithReceivers { - // as is necessary above: see KT-10384 constructor ( element: KtElement,