summaryrefslogtreecommitdiff
path: root/src/scalap
diff options
context:
space:
mode:
authormpociecha <michal.pociecha@gmail.com>2014-11-28 17:51:56 +0100
committermpociecha <michal.pociecha@gmail.com>2014-11-30 22:30:32 +0100
commit6b498c30038d92c5dd8970656258894e30566104 (patch)
tree8ac816e44aa243ec517de010042b55498d62576d /src/scalap
parent74483771dcdfc963b28325d8ea3698df273370a1 (diff)
downloadscala-6b498c30038d92c5dd8970656258894e30566104.tar.gz
scala-6b498c30038d92c5dd8970656258894e30566104.tar.bz2
scala-6b498c30038d92c5dd8970656258894e30566104.zip
Use new asClassPathString method and create FileUtils for classpath
The method asClasspathString is now deprecated. Moreover it's moved to ClassFileLookup in the case someone was using it in some project (an alternative classpath also will support it - just in the case). All its usages existing in Scala sources are changed to asClassPathString method. The only difference is the name. Some operations on files or their names are moved from ClassPath to the newly created FileUtils dedicated to classpath. It will be possible to reuse them when implementing an alternative classpath representation. Moreover such allocation-free extension methods like the one added in this commit will improve the readability.
Diffstat (limited to 'src/scalap')
-rw-r--r--src/scalap/scala/tools/scalap/Main.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scalap/scala/tools/scalap/Main.scala b/src/scalap/scala/tools/scalap/Main.scala
index 1faa855444..edad3bfc09 100644
--- a/src/scalap/scala/tools/scalap/Main.scala
+++ b/src/scalap/scala/tools/scalap/Main.scala
@@ -135,7 +135,7 @@ class Main {
*/
def name = ""
def asURLs = Nil
- def asClasspathString = ""
+ def asClassPathString = ""
val context = DefaultJavaContext
val classes = IndexedSeq()