summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2004-06-24 07:36:02 +0000
committermihaylov <mihaylov@epfl.ch>2004-06-24 07:36:02 +0000
commit26fe188f8277463fd4473748680f2df431f4ccb6 (patch)
tree7fc6070c6f353e0b9ad09422e294324f268a5d65 /sources
parent7be461e3ec9ae4fc41c418c58b6f47a052b2ce39 (diff)
downloadscala-26fe188f8277463fd4473748680f2df431f4ccb6.tar.gz
scala-26fe188f8277463fd4473748680f2df431f4ccb6.tar.bz2
scala-26fe188f8277463fd4473748680f2df431f4ccb6.zip
- fixed infinite recursion in one of the constr...
- fixed infinite recursion in one of the constructors
Diffstat (limited to 'sources')
-rw-r--r--sources/scala/tools/util/debug/AbortError.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scala/tools/util/debug/AbortError.java b/sources/scala/tools/util/debug/AbortError.java
index 25bdc3ed1d..e3c84a7cda 100644
--- a/sources/scala/tools/util/debug/AbortError.java
+++ b/sources/scala/tools/util/debug/AbortError.java
@@ -29,7 +29,7 @@ public class AbortError extends Error {
/** Initializes this instance with the specified cause. */
protected AbortError(Throwable cause) {
- this(cause);
+ super(cause);
}
/**