summaryrefslogtreecommitdiff
path: root/sources/scalac/util
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2004-03-25 08:46:20 +0000
committerpaltherr <paltherr@epfl.ch>2004-03-25 08:46:20 +0000
commitd7541a389ad3fcac61091568bcbf39f1fe7d7d15 (patch)
tree95a95b493426713db14f3763af94119909c7baf3 /sources/scalac/util
parent95749d947ceb65bb0b49c487d11cd77bb2e1f4af (diff)
downloadscala-d7541a389ad3fcac61091568bcbf39f1fe7d7d15.tar.gz
scala-d7541a389ad3fcac61091568bcbf39f1fe7d7d15.tar.bz2
scala-d7541a389ad3fcac61091568bcbf39f1fe7d7d15.zip
- Added appendSymbol with prefix in SymbolNameW...
- Added appendSymbol with prefix in SymbolNameWriter Added toString - methods in SymbolNameWriter
Diffstat (limited to 'sources/scalac/util')
-rw-r--r--sources/scalac/util/SourceRepresentation.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scalac/util/SourceRepresentation.java b/sources/scalac/util/SourceRepresentation.java
index 3ddbae6812..e9c0164cd3 100644
--- a/sources/scalac/util/SourceRepresentation.java
+++ b/sources/scalac/util/SourceRepresentation.java
@@ -221,7 +221,7 @@ public final class SourceRepresentation {
*/
public static String externalizeFileName(Symbol clasz, String suffix) {
assert clasz.isClassType(): Debug.show(clasz);
- String name = fileNameWriter.appendSymbol(clasz, suffix).toString();
+ String name = fileNameWriter.toString(clasz, suffix);
fileNameWriter.setStringBuffer(null);
return name;
}