summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2004-06-03 14:17:15 +0000
committerpaltherr <paltherr@epfl.ch>2004-06-03 14:17:15 +0000
commitefb7dc68db0c3e87254e7f53ff8542f21c492dbf (patch)
tree9a7b7a3041f9a72c9b9635a99bdba8636b2b7a9e /sources
parentf36b4fc60726159c2d10c4d01d6dca044964c4c5 (diff)
downloadscala-efb7dc68db0c3e87254e7f53ff8542f21c492dbf.tar.gz
scala-efb7dc68db0c3e87254e7f53ff8542f21c492dbf.tar.bz2
scala-efb7dc68db0c3e87254e7f53ff8542f21c492dbf.zip
- Reverted change to toString
Diffstat (limited to 'sources')
-rw-r--r--sources/scala/tools/util/AbstractFile.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scala/tools/util/AbstractFile.java b/sources/scala/tools/util/AbstractFile.java
index 88f126c783..723d983a4a 100644
--- a/sources/scala/tools/util/AbstractFile.java
+++ b/sources/scala/tools/util/AbstractFile.java
@@ -121,7 +121,7 @@ public abstract class AbstractFile {
/** Returns the path of this abstract file. */
public final String toString() {
- return getPath() + File.separator + getName();
+ return getPath();
}
//########################################################################