Rafael Winterhalter

Results 738 comments of Rafael Winterhalter

When I added the plugin there was nothing really, but I am happy to revisit. Do you know of a good option? I do however wonder if they work with...

And repackages. ASM did some major. API changes in the past, thus the repackaging.

The problem being is that I want to create the same jar with all toolchains from Java 6 upwards. With my plugin this is possible, but but I did not...

Are you sure your advice is applied? Did you dump the class file snd look st the generated class?

Sure. Use `.subclass(..., ConstructorStrategy.Defaults.NONE)`. Byte Buddy will then not create implicit constructors. Instead, you create them explicitly. I assume your proxy has only a default constructor? If so: `MethodCall.invoke(subclass.getConstructor()).onSuper().andThen(MethodCall.invoke(HashSet.class.getConstructor()).setField("_modified$Fields$Tracker")`

You probably want to annotate the second parameter as well using `@Argument(0)`

I remember that this is implemented in HotSpot. I assume that this requirement is taken from there but is not implemented. Disabling it by a property seems like a reasonable...

I remember implementing this by extracting the logic from a Java 8 version of J9 and I did not revisit thereafter. If I remember correctly, HotSpot checks the chmod of...

Ok, so we need to check if the owners are unequal and change it unless the current id is 0. I can look into it, but I'd appreciate at PR...