Portions of this source file are a fork of ASM. @author Guilherme Silveira @author Paul Hammant
5253545556575859
} } public static Paranamer paranamer = setParanamer(ClassHelper.getDefaultClassLoader()); public static Paranamer setParanamer(ClassLoader classLoader) { paranamer = new CachingParanamer(new AdaptiveParanamer(new DefaultParanamer(),new BytecodeReadingParanamer(),new JavaSourceParanamer(classLoader)) ); return paranamer; }
5152535455565758
} } public static Paranamer paranamer = setParanamer(Thread.currentThread().getContextClassLoader()); public static Paranamer setParanamer(ClassLoader classLoader) { paranamer = new CachingParanamer(new AdaptiveParanamer(new DefaultParanamer(),new BytecodeReadingParanamer(),new JavaSourceParanamer(classLoader)) ); return paranamer; }