summaryrefslogtreecommitdiff
path: root/sources/scalac/util
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2003-12-01 15:33:37 +0000
committermihaylov <mihaylov@epfl.ch>2003-12-01 15:33:37 +0000
commit75b2c96112ad0d51791a457adaf2bc4fa87d489e (patch)
tree838c409a9b8fddca62f12e39c4937786e5b148cb /sources/scalac/util
parent8550ca1591c314bfa2e45ebecd2005169ef68a3f (diff)
downloadscala-75b2c96112ad0d51791a457adaf2bc4fa87d489e.tar.gz
scala-75b2c96112ad0d51791a457adaf2bc4fa87d489e.tar.bz2
scala-75b2c96112ad0d51791a457adaf2bc4fa87d489e.zip
- made the parse method 'public static' so that...
- made the parse method 'public static' so that it's easier to use from other classes
Diffstat (limited to 'sources/scalac/util')
-rw-r--r--sources/scalac/util/ClassPath.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scalac/util/ClassPath.java b/sources/scalac/util/ClassPath.java
index 75b932a08d..bd2a0665e9 100644
--- a/sources/scalac/util/ClassPath.java
+++ b/sources/scalac/util/ClassPath.java
@@ -119,7 +119,7 @@ public class ClassPath {
/** parse a class path specification and return an array
* of existing class file locations
*/
- protected String[] parse(String path) {
+ public static String[] parse(String path) {
path += PATH_SEP;
Vector components = new Vector();
int i = 0;