Skip to content

Commit efbd6cb

Browse files
committed
Remove debug output.
1 parent 5237719 commit efbd6cb

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

byte-buddy-gradle-plugin/src/main/java/net/bytebuddy/build/gradle/Transformation.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -258,14 +258,9 @@ protected PluginResolvingClassLoader(ClassLoader parent, ClassLoader classLoader
258258
*/
259259
public static Class<?> wrap(ClassLoader parent, Class<?> type) {
260260
try {
261-
Class<?> t = Class.forName(type.getName(),
261+
return Class.forName(type.getName(),
262262
false,
263263
new PluginResolvingClassLoader(parent, type.getClassLoader(), type.getProtectionDomain()));
264-
System.out.println("XXXXX");
265-
System.out.println(t.getClassLoader());
266-
System.out.println(Plugin.class.getClassLoader());
267-
System.out.println(parent);
268-
return t;
269264
} catch (ClassNotFoundException exception) {
270265
throw new IllegalStateException("Failed to wrap plugin type " + type.getName(), exception);
271266
}

0 commit comments

Comments
 (0)