Skip to content

Commit

Permalink
Remove loadcache optimization, always use ByteCodeChecker cache.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravi Kiran Noothi committed Apr 25, 2018
1 parent d3e74d0 commit 4fe2d6b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -911,7 +911,7 @@ public org.jboss.byteman.agent.check.ClassChecker getClassChecker(String name, C
// the super class. this may cause us to miss the chance to apply rule injection into the super

ClassLoader loader = baseLoader;
Class clazz = loadCache.lookupClass(name, loader);
Class clazz = null;

if (clazz != null) {
return new org.jboss.byteman.agent.check.LoadedClassChecker(clazz);
Expand Down

0 comments on commit 4fe2d6b

Please sign in to comment.