summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2003-11-05 17:00:40 +0000
committerpaltherr <paltherr@epfl.ch>2003-11-05 17:00:40 +0000
commitb877736780bd6313660b818a5486b054214007c4 (patch)
tree37f0c883ca3ea1b0845f502905851d6b1ffc14be /sources
parent93fc1b0b638d5d374d6c51970cd5c247518fe563 (diff)
downloadscala-b877736780bd6313660b818a5486b054214007c4.tar.gz
scala-b877736780bd6313660b818a5486b054214007c4.tar.bz2
scala-b877736780bd6313660b818a5486b054214007c4.zip
- Fixed error message
Diffstat (limited to 'sources')
-rw-r--r--sources/scalac/atree/ATreePrinter.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scalac/atree/ATreePrinter.java b/sources/scalac/atree/ATreePrinter.java
index 073a58daec..716187bc09 100644
--- a/sources/scalac/atree/ATreePrinter.java
+++ b/sources/scalac/atree/ATreePrinter.java
@@ -360,7 +360,7 @@ public class ATreePrinter {
case ArrayItem(ACode array, ACode index):
return printCode(array).print('(').printCode(index).print(')');
default:
- throw Debug.abort("illegal case", location);
+ throw Debug.abort("unknown case", location);
}
}