Skip to content

Commit

Permalink
Drop com.oracle.graalvm.locator.jdk11.
Browse files Browse the repository at this point in the history
  • Loading branch information
fniephaus committed Feb 15, 2022
1 parent 9de0d72 commit a8ec0a8
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 124 deletions.
10 changes: 0 additions & 10 deletions truffle/mx.truffle/suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -959,16 +959,6 @@
"license": "GPLv2-CPE",
"jacoco" : "exclude",
},

"com.oracle.graalvm.locator.jdk11" : {
"subDir" : "src",
"sourceDirs" : ["src"],
"overlayTarget" : "com.oracle.graalvm.locator",
"checkstyle" : "com.oracle.truffle.api",
"multiReleaseJarVersion" : "11",
"javaCompliance" : "11+",
"checkPackagePrefix" : "false",
},
},

"licenses" : {
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public static ClassLoader getLanguagesLoader() {
setGraalVMProperties(homeFinder);
if (!TruffleOptions.AOT) {
final List<URL> classPath = collectClassPath(homeFinder);
loader = new GuestLangToolsLoader(classPath.toArray(new URL[0]), JDKServices.getLocatorBaseClassLoader(GraalVMLocator.class));
loader = new GuestLangToolsLoader(classPath.toArray(new URL[0]), ClassLoader.getPlatformClassLoader());
}
}
return loader;
Expand Down

This file was deleted.

0 comments on commit a8ec0a8

Please sign in to comment.