summaryrefslogtreecommitdiff
path: root/sources/meta
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2003-04-16 13:42:32 +0000
committerpaltherr <paltherr@epfl.ch>2003-04-16 13:42:32 +0000
commitfaf079fc790332aa63519d1817f63b95bc425679 (patch)
treeec4c4467d0af1e6dd68730c0b883b215d18fdd6e /sources/meta
parent6208a4f530a18e0b920d821d1c18a1882c9c2839 (diff)
downloadscala-faf079fc790332aa63519d1817f63b95bc425679.tar.gz
scala-faf079fc790332aa63519d1817f63b95bc425679.tar.bz2
scala-faf079fc790332aa63519d1817f63b95bc425679.zip
- Changed value returned by getTargetBaseName
Diffstat (limited to 'sources/meta')
-rw-r--r--sources/meta/util/AbstractFileExpander.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/meta/util/AbstractFileExpander.java b/sources/meta/util/AbstractFileExpander.java
index 580fa08bd8..d77f6b81b3 100644
--- a/sources/meta/util/AbstractFileExpander.java
+++ b/sources/meta/util/AbstractFileExpander.java
@@ -98,10 +98,10 @@ public abstract class AbstractFileExpander {
/**
* Returns the base name of the source file. The default
- * implementation returns the target base name.
+ * implementation returns this instance's associated name.
*/
public String getSourceBaseName() {
- return getTargetBaseName();
+ return getName();
}
/**