File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
agent/src/main/java/scalive Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -137,8 +137,8 @@ private static String getURLClasspath(URLClassLoader cl) {
137
137
// http://www.scala-sbt.org/release/api/index.html#sbt.classpath.ClasspathFilter
138
138
private static String sbtGetClasspathFromClasspathFilter (URLClassLoader withReplJars , ClassLoader parentCl ) throws Exception {
139
139
ClassLoader mainClassLoader = sbtFindMainClassLoader ();
140
- Class <?> ClasspathFilterClass = Class .forName ("sbt.classpath.ClasspathFilter" , true , mainClassLoader );
141
- Field classpathField = ClasspathFilterClass .getDeclaredField ("classpath" );
140
+ Class <?> classpathFilterClass = Class .forName ("sbt.classpath.ClasspathFilter" , true , mainClassLoader );
141
+ Field classpathField = classpathFilterClass .getDeclaredField ("classpath" );
142
142
classpathField .setAccessible (true );
143
143
144
144
Object set = classpathField .get (parentCl );
You can’t perform that action at this time.
0 commit comments