You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ParameterInfo has a getName() method, but it does not return the parameter name, even if javac was invoked with the -parameters switch (which preserves parameter names in the generated class bytecode). The names that the procyon reflections library returns are always p0 etc.
However, if I use the regular Java reflection API, I do get the correct parameter names for methods in the same compiled class.
The text was updated successfully, but these errors were encountered:
ParameterInfo
has agetName()
method, but it does not return the parameter name, even ifjavac
was invoked with the-parameters
switch (which preserves parameter names in the generated class bytecode). The names that the procyon reflections library returns are alwaysp0
etc.However, if I use the regular Java reflection API, I do get the correct parameter names for methods in the same compiled class.
The text was updated successfully, but these errors were encountered: