Rafael Winterhalter

Results 569 comments of Rafael Winterhalter
trafficstars

This is an error in Guava. If you update the library, does this error still occur?

That should be consistent for all OSes. This also sounds intuitive since 9, 10 and 11 are unsupported versions with no bug fix backports.

I can certainly add it since it is an enduring compiler bug. Could you create a reproduction without dependencies for me to integrate in Byte Buddy?

This is now handled and supported by a test. It will be released with the next version. Sorry for not taking care of this earlier.

`MethodDelegation` had different annotations. Are you sure that you placed the right one?

Well, there is two limitations: - The delegate class needs to be on the same class loader. - The annotations on the delegate method need to be from the `bind`...

No, that is how the JVM works, unfortunately. Advice, by default, inlines the code, this is why this is not the case here.

Sorry, I missed that before. You can skip the original method using `OnMethodEnter(skipOn = ...)` and then set a different return value in `OnMethodExit` by using `@Returned(readOnly = false)` on...

Byte Buddy is used in a lot of tooling which normally needs to support older VMs, too. Not sure why the class data sharing excludes old class files, but for...

That would work, would however double the jar size. Possibly I could offer two artifacts. I will look into that. Does class data sharing even support MR jars?