langtools/test/tools/sjavac/SjavacBase.java
changeset 31115 8d8e98052d5d
parent 26991 88d998b3bb4b
child 32337 c9d3ab9f601c
--- a/langtools/test/tools/sjavac/SjavacBase.java	Tue Jun 09 11:52:13 2015 +0200
+++ b/langtools/test/tools/sjavac/SjavacBase.java	Tue Jun 09 15:57:45 2015 +0200
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -37,7 +37,7 @@
      */
     public static int compile(Object... args) throws ReflectiveOperationException {
         // Use reflection to avoid a compile-time dependency on sjavac Main
-        System.err.println("compile: " + Arrays.toString(args));
+        System.out.println("compile: " + Arrays.toString(args));
         Class<?> c = Class.forName("com.sun.tools.sjavac.Main");
         Method m = c.getDeclaredMethod("go", String[].class);
         String[] strArgs = new String[args.length];