diff graal/com.oracle.jvmci.runtime/src/com/oracle/jvmci/runtime/Services.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 c1e2fdb5fea3
children
line wrap: on
line diff
--- a/graal/com.oracle.jvmci.runtime/src/com/oracle/jvmci/runtime/Services.java	Wed May 27 13:32:18 2015 +0200
+++ b/graal/com.oracle.jvmci.runtime/src/com/oracle/jvmci/runtime/Services.java	Wed May 27 13:43:27 2015 +0200
@@ -39,7 +39,7 @@
             Service[] names = getServiceImpls(type);
             if (names == null || names.length == 0) {
                 throw new InternalError(
-                                format("No implementations for %s found (ensure %s extends %s and that in suite.py the \"annotationProcessors\" attribute for the project enclosing %s includes \"com.oracle.graal.service.processor\")",
+                                format("No implementations for %s found (ensure %s extends %s and that in suite.py the \"annotationProcessors\" attribute for the project enclosing %s includes \"com.oracle.jvmci.runtime.processor\")",
                                                 type.getSimpleName(), type.getSimpleName(), Service.class, type.getSimpleName()));
             }
             return Arrays.asList(names);