javassist icon indicating copy to clipboard operation
javassist copied to clipboard

[IntegerMemberValue]use the static factory method instead of the constructor

Open HenryZhang-ZHY opened this issue 2 years ago • 0 comments

IntegerMemberValue's constructor is different from other MemberValue. public IntegerMemberValue(ConstPool cp, int value) I think we can use the static factory method instead of the constructor to create MemberValue. like this: public static IntegerMemberValue create(int value, ConstPool)

HenryZhang-ZHY avatar Mar 22 '22 02:03 HenryZhang-ZHY