DATACMNS-993 - Polishing.

Removed System.out in ShadowingClassLoader.
This commit is contained in:
Oliver Drotbohm
2018-12-04 11:43:21 +01:00
parent 39c6099ef2
commit 840addcdbe

View File

@@ -89,7 +89,6 @@ public class ShadowingClassLoader extends DecoratingClassLoader {
@Override
public Class<?> loadClass(String name) throws ClassNotFoundException {
if (shouldShadow(name)) {
System.out.println("shadowing " + name);
Class<?> cls = this.classCache.get(name);
if (cls != null) {
return cls;