From 164338d6f5f922707bce93a09f0635d7b7e174ad Mon Sep 17 00:00:00 2001 From: Alexey Sedunov Date: Tue, 20 May 2014 15:10:45 +0400 Subject: [PATCH] Remove unused field --- .../lang/cfg/pseudocode/JetControlFlowInstructionsGenerator.java | 1 - 1 file changed, 1 deletion(-) diff --git a/compiler/frontend/src/org/jetbrains/jet/lang/cfg/pseudocode/JetControlFlowInstructionsGenerator.java b/compiler/frontend/src/org/jetbrains/jet/lang/cfg/pseudocode/JetControlFlowInstructionsGenerator.java index 2d9a444e6c6..1ec4f62a45e 100644 --- a/compiler/frontend/src/org/jetbrains/jet/lang/cfg/pseudocode/JetControlFlowInstructionsGenerator.java +++ b/compiler/frontend/src/org/jetbrains/jet/lang/cfg/pseudocode/JetControlFlowInstructionsGenerator.java @@ -40,7 +40,6 @@ public class JetControlFlowInstructionsGenerator extends JetControlFlowBuilderAd private final Stack lexicalScopes = new Stack(); private final Map elementToBlockInfo = new HashMap(); private int labelCount = 0; - private int allowDeadLabelCount = 0; private final Stack builders = new Stack();