summaryrefslogtreecommitdiff
path: root/sources/scalac/atree/ACode.java
diff options
context:
space:
mode:
Diffstat (limited to 'sources/scalac/atree/ACode.java')
-rw-r--r--sources/scalac/atree/ACode.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scalac/atree/ACode.java b/sources/scalac/atree/ACode.java
index d9b1c1ab9d..609bb03dea 100644
--- a/sources/scalac/atree/ACode.java
+++ b/sources/scalac/atree/ACode.java
@@ -48,7 +48,7 @@ public class ACode {
public case If(ACode test, ACode success, ACode failure);
// jvm : {tables, lookup}switch
- public case Switch(ACode test, int[][] tags, ACode[] bodies, ACode other);
+ public case Switch(ACode test, int[][] tags, ACode[] bodies);
// jvm : monitor{enter, exit}
public case Synchronized(ACode lock, ACode value);