We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85dd50d commit ffca555Copy full SHA for ffca555
1 file changed
src/main/java/org/mdkt/compiler/InMemoryJavaCompiler.java
@@ -29,6 +29,14 @@ public InMemoryJavaCompiler useParentClassLoader(ClassLoader parent) {
29
return this;
30
}
31
32
+ /**
33
+ * @return the class loader used internally by the compiler
34
+ */
35
+ public ClassLoader getClassloader()
36
+ {
37
+ return classLoader;
38
+ }
39
+
40
/**
41
* Options used by the compiler, e.g. '-Xlint:unchecked'.
42
* @param options
0 commit comments