aboutsummaryrefslogtreecommitdiff
path: root/compiler/src/dotty/tools/dotc/config/JavaPlatform.scala
diff options
context:
space:
mode:
authorGuillaume Martres <smarter@ubuntu.com>2016-11-27 15:24:22 +0100
committerGuillaume Martres <smarter@ubuntu.com>2017-01-27 13:54:28 +0100
commit0c97f764fec6881abc812e0066cdebb3e0c6ce8a (patch)
treed865572bd7a5bb688a69590558a24a1cf0a23818 /compiler/src/dotty/tools/dotc/config/JavaPlatform.scala
parentab0a83d1456877c6a38f32b1d2a4529cbaa90a45 (diff)
downloaddotty-0c97f764fec6881abc812e0066cdebb3e0c6ce8a.tar.gz
dotty-0c97f764fec6881abc812e0066cdebb3e0c6ce8a.tar.bz2
dotty-0c97f764fec6881abc812e0066cdebb3e0c6ce8a.zip
Remove hardcoded classpath reordering
If something needs to be fixed, fix it at the source. This prevented dotty-compiler-bootstrapped from using the dotty-library-bootstrapped clases instead of the dotty-library jar
Diffstat (limited to 'compiler/src/dotty/tools/dotc/config/JavaPlatform.scala')
-rw-r--r--compiler/src/dotty/tools/dotc/config/JavaPlatform.scala2
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/src/dotty/tools/dotc/config/JavaPlatform.scala b/compiler/src/dotty/tools/dotc/config/JavaPlatform.scala
index b5bfbb39f..59201687a 100644
--- a/compiler/src/dotty/tools/dotc/config/JavaPlatform.scala
+++ b/compiler/src/dotty/tools/dotc/config/JavaPlatform.scala
@@ -17,8 +17,6 @@ class JavaPlatform extends Platform {
if (currentClassPath.isEmpty)
currentClassPath = Some(new PathResolver().result)
val cp = currentClassPath.get
- //println(cp)
- //println("------------------")
cp
}