Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipe Mulet2003-06-26 16:07:58 +0000
committerPhilipe Mulet2003-06-26 16:07:58 +0000
commitfe0ff13a85af207787c3e61a795f2b7238947d6c (patch)
tree90763af0ffffc13b561e8ad685eea9ec763cda29 /org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/flow/SwitchFlowContext.java
parent8e33f97ee39e8610c3480bf6c8dc09b52195779b (diff)
downloadeclipse.jdt.core-fe0ff13a85af207787c3e61a795f2b7238947d6c.tar.gz
eclipse.jdt.core-fe0ff13a85af207787c3e61a795f2b7238947d6c.tar.xz
eclipse.jdt.core-fe0ff13a85af207787c3e61a795f2b7238947d6c.zip
*** empty log message ***
Diffstat (limited to 'org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/flow/SwitchFlowContext.java')
-rw-r--r--org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/flow/SwitchFlowContext.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/flow/SwitchFlowContext.java b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/flow/SwitchFlowContext.java
index 85f350fb07..76b227cf68 100644
--- a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/flow/SwitchFlowContext.java
+++ b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/flow/SwitchFlowContext.java
@@ -49,6 +49,6 @@ public class SwitchFlowContext extends FlowContext {
initsOnBreak = flowInfo.copy().unconditionalInits();
} else {
initsOnBreak = initsOnBreak.mergedWith(flowInfo.unconditionalInits());
- };
+ }
}
}

Back to the top