365code365

Results 1 issues of 365code365

the method like this, method without public、private、protected ![image](https://github.com/raphw/byte-buddy/assets/102890485/96394d97-6774-48a8-908e-d31b8e98c431) public void init() { TypePool typePool = TypePool.Default.ofSystemLoader(); new ByteBuddy() .redefine(typePool.describe("org.jsoup.helper.HttpConnection$Response").resolve(), ClassFileLocator.ForClassLoader.ofSystemLoader()) .method(ElementMatchers.isStatic() .and(ElementMatchers.named("execute"))) .intercept(MethodDelegation.to(new Interceptor())) .make() .load(ClassLoader.getSystemClassLoader(), ClassLoadingStrategy.Default.INJECTION) .getLoaded(); }

question