diff mx/mx_graal.py @ 21604:93f282187d90

moved JVMCI service API into separate com.oracle.jvmci.service module (JBS:GRAAL-53)
author Doug Simon <doug.simon@oracle.com>
date Fri, 29 May 2015 17:01:57 +0200
parents 4437f0da4b26
children 71b338926f2e
line wrap: on
line diff
--- a/mx/mx_graal.py	Fri May 29 16:24:25 2015 +0200
+++ b/mx/mx_graal.py	Fri May 29 17:01:57 2015 +0200
@@ -570,7 +570,7 @@
                         classification[className] = False
                         break
                     superInterfaces = afterName[len(' extends '):-len(' {')].split(',')
-                    if 'com.oracle.jvmci.runtime.Service' in superInterfaces:
+                    if 'com.oracle.jvmci.service.Service' in superInterfaces:
                         classification[className] = True
                         break
                     maybe = [_eraseGenerics(superInterface) for superInterface in superInterfaces]