aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/io/ClassPath.scala
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2015-04-09 17:26:10 +0200
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-04-09 17:26:10 +0200
commitd7c44086cc34eee7991753fc2ea284bdefed9670 (patch)
treef1b3461a042df1b7c65628ae57d7c1a613718cb8 /src/dotty/tools/io/ClassPath.scala
parent9f80c0d2e87819f183cf54028824bd338d780dcd (diff)
downloaddotty-d7c44086cc34eee7991753fc2ea284bdefed9670.tar.gz
dotty-d7c44086cc34eee7991753fc2ea284bdefed9670.tar.bz2
dotty-d7c44086cc34eee7991753fc2ea284bdefed9670.zip
Add spaces around + in dotty source.
Diffstat (limited to 'src/dotty/tools/io/ClassPath.scala')
-rw-r--r--src/dotty/tools/io/ClassPath.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dotty/tools/io/ClassPath.scala b/src/dotty/tools/io/ClassPath.scala
index 055ee9f88..ecb063469 100644
--- a/src/dotty/tools/io/ClassPath.scala
+++ b/src/dotty/tools/io/ClassPath.scala
@@ -283,7 +283,7 @@ class SourcePath(dir: AbstractFile, val context: ClassPathContext) extends Class
}
lazy val (packages, classes) = traverse()
- override def toString() = "sourcepath: "+ dir.toString()
+ override def toString() = "sourcepath: " + dir.toString()
}
/**
@@ -310,7 +310,7 @@ class DirectoryClassPath(val dir: AbstractFile, val context: ClassPathContext) e
}
lazy val (packages, classes) = traverse()
- override def toString() = "directory classpath: "+ origin.getOrElse("?")
+ override def toString() = "directory classpath: " + origin.getOrElse("?")
}
class DeltaClassPath(original: MergedClassPath, subst: Map[ClassPath, ClassPath])
@@ -393,7 +393,7 @@ extends ClassPath {
println("ClassPath %s has %d entries and results in:\n".format(name, entries.size))
asClasspathString split ':' foreach (x => println(" " + x))
}
- override def toString() = "merged classpath "+ entries.mkString("(", "\n", ")")
+ override def toString() = "merged classpath " + entries.mkString("(", "\n", ")")
}
/**