Rafael Winterhalter
                                            Rafael Winterhalter
                                        
                                    You cannot have two methods with the same signature, even if the modifier is different, if that is the question?
You would need to inject every single linked class. That is not normally recommended. What are you trying to do?
create an abstract class with a public static field of itself. set that field with a subclass that is not injected. only use jvm types in your abstract class.
types the the java package.
You would create a class like this: ```java public abstract class Dispatcher { public static Dispatcher dispatcher; public abstract void doDispatch(); } ``` Once on the boot loader, you can...
The lock occurs as two threads attempt to load a class which requires a lock for looking up a class file. The same issue can however occur during regular class...
Byte Buddy is not loading a class, it is looking up a class file. This happens during instrumentation, I am not really sure how this can trigger a deadlock for...
You should not instrument the agent from within its own class loader, which should factor out the agent. Ideally, you bundle the agent in a custom jar and when loading...
What is the issue?
Try updating first.