Rafael Winterhalter
Rafael Winterhalter
I cannot reproduce this problem. Can you create an executable sample?
Those methods do sometimes exist for bridging calls with respect to generics. But it should indeed be more explicit if you define such methods explicitly. I will have a look...
Do you rebase? With a redefinition, static methods do not have a super method and the delegator could not be bound.
Can you show how your Byte Buddy code looks like? How do you apply the delegation?
Good point. I added that.
That's non trivial, as normal transformations might be conflicting. For example, if a given value was supposed to be returned, what of the two transformers should win? Decorating transformers, mainly...
You should use a TypeCache and not create new classes for each proxy.
If a method is active within an infiite loop, it can never be unloaded. Might this be the case? I would not know how Byte Buddy is causing this. I...
Metaspace just grows. It's possible two versions exist in parallel if one remains active, e.g a loop is never left.
Not sure I follow. Could you adjust your example code such that it compiles?