aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/config/JavaPlatform.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotty/tools/dotc/config/JavaPlatform.scala')
-rw-r--r--src/dotty/tools/dotc/config/JavaPlatform.scala4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/config/JavaPlatform.scala b/src/dotty/tools/dotc/config/JavaPlatform.scala
index 433b5b3f0..5a21acd15 100644
--- a/src/dotty/tools/dotc/config/JavaPlatform.scala
+++ b/src/dotty/tools/dotc/config/JavaPlatform.scala
@@ -16,7 +16,9 @@ class JavaPlatform extends Platform {
def classPath(implicit ctx: Context): ClassPath = {
if (currentClassPath.isEmpty)
currentClassPath = Some(new PathResolver().result)
- currentClassPath.get
+ val cp = currentClassPath.get
+ println(cp)
+ cp
}
// The given symbol is a method with the right name and signature to be a runnable java program.