comparison jvmci/jdk.vm.ci.runtime/src/jdk/vm/ci/runtime/services/JVMCICompilerFactory.java @ 23783:1523f2f7832f

renamed JVMCIPrintSystemProperties to JVMCIPrintProperties
author Doug Simon <doug.simon@oracle.com>
date Wed, 05 Oct 2016 22:07:45 +0200
parents 276858bc6ac6
children
comparison
equal deleted inserted replaced
23782:286dce1eca9b 23783:1523f2f7832f
72 * Create a new instance of a {@link JVMCICompiler}. 72 * Create a new instance of a {@link JVMCICompiler}.
73 */ 73 */
74 public abstract JVMCICompiler createCompiler(JVMCIRuntime runtime); 74 public abstract JVMCICompiler createCompiler(JVMCIRuntime runtime);
75 75
76 /** 76 /**
77 * Prints a help message describing the system properties used to configure this compiler. 77 * Prints a description of the properties used to configure this compiler.
78 * 78 *
79 * @param out where to print the message 79 * @param out where to print the message
80 */ 80 */
81 public void printSystemProperties(PrintStream out) { 81 public void printProperties(PrintStream out) {
82 } 82 }
83 } 83 }