/* */
/* */ private static FastClass helper(ClassLoader loader, Class type) {
/* 72 */ FastClass.Generator g = new FastClass.Generator();
/* 73 */ g.setType(type);
/* 74 */ g.setClassLoader(loader);
/* 75 */ AbstractClassGenerator fromEnhancer = AbstractClassGenerator.getCurrent();
/* 76 */ if (fromEnhancer != null) {
/* 77 */ g.setNamingPolicy(fromEnhancer.getNamingPolicy());
/* 78 */ g.setStrategy(fromEnhancer.getStrategy());
/* 79 */ g.setAttemptLoad(fromEnhancer.getAttemptLoad());
/* */ }
/* 81 */ return g.create();
/* */ }