comparison graal/com.oracle.jvmci.hotspotvmconfig.processor/src/com/oracle/jvmci/hotspotvmconfig/processor/HotSpotVMConfigProcessor.java @ 21558:d563baeca9df

changed uses of Graal terminology to JVMCI (JBS:GRAAL-53)
author Doug Simon <doug.simon@oracle.com>
date Wed, 27 May 2015 13:43:27 +0200
parents b1530a6cce8c
children
comparison
equal deleted inserted replaced
21557:31fc2fce38f3 21558:d563baeca9df
228 } 228 }
229 } 229 }
230 230
231 protected PrintWriter createSourceFile(String pkg, String relativeName, Filer filer, Element... originatingElements) { 231 protected PrintWriter createSourceFile(String pkg, String relativeName, Filer filer, Element... originatingElements) {
232 try { 232 try {
233 // Ensure Unix line endings to comply with Graal code style guide checked by Checkstyle 233 // Ensure Unix line endings to comply with code style guide checked by Checkstyle
234 FileObject sourceFile = filer.createResource(StandardLocation.SOURCE_OUTPUT, pkg, relativeName, originatingElements); 234 FileObject sourceFile = filer.createResource(StandardLocation.SOURCE_OUTPUT, pkg, relativeName, originatingElements);
235 logMessage("%s\n", sourceFile); 235 logMessage("%s\n", sourceFile);
236 return new PrintWriter(sourceFile.openWriter()) { 236 return new PrintWriter(sourceFile.openWriter()) {
237 237
238 @Override 238 @Override