summaryrefslogtreecommitdiff
path: root/test/files/run/bridges.scala
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2004-10-12 09:28:42 +0000
committermihaylov <mihaylov@epfl.ch>2004-10-12 09:28:42 +0000
commit60e78ebb8c4767b197da1b06e90f0e4e9edb7798 (patch)
treedd5d1c1e67c1cd6ecd054a9d0deb191d17d60d08 /test/files/run/bridges.scala
parent5b80c0ad5d9006856780eaca6aee40c738fbe196 (diff)
downloadscala-60e78ebb8c4767b197da1b06e90f0e4e9edb7798.tar.gz
scala-60e78ebb8c4767b197da1b06e90f0e4e9edb7798.tar.bz2
scala-60e78ebb8c4767b197da1b06e90f0e4e9edb7798.zip
- [MSIL] Removed call to printStackTrace() in o...
- [MSIL] Removed call to printStackTrace() in order to compile without modifications for .NET
Diffstat (limited to 'test/files/run/bridges.scala')
-rw-r--r--test/files/run/bridges.scala3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/files/run/bridges.scala b/test/files/run/bridges.scala
index 91fd277f57..ce76ae33b5 100644
--- a/test/files/run/bridges.scala
+++ b/test/files/run/bridges.scala
@@ -3592,8 +3592,7 @@ object Test {
}
} catch {
case exception => {
- System.out.print(name + " raised exception ");
- exception.printStackTrace();
+ System.out.print(name + " raised exception " + exception);
System.out.println();
errors = errors + 1;
}