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
Bad class names are treated differently when they occur in --methodlist input than when they are given using --classlist or --testclass.
When --silently-ignore-bad-class-names is set, a ClassNotFoundException exception that is thrown by a call to Class.forName with one of these exceptions is supposed to be ignored. This currently happens for names from --classlist or --testclass in OperationModel.addClassTypes().
But for --methodlist bad classnames are recognized in SignatureParser.parse() and an exception is thrown regardless of the --silently-ignore-bad-class-names flag.
The text was updated successfully, but these errors were encountered:
Bad class names are treated differently when they occur in
--methodlist
input than when they are given using--classlist
or--testclass
.When
--silently-ignore-bad-class-names
is set, aClassNotFoundException
exception that is thrown by a call toClass.forName
with one of these exceptions is supposed to be ignored. This currently happens for names from--classlist
or--testclass
inOperationModel.addClassTypes()
.But for
--methodlist
bad classnames are recognized inSignatureParser.parse()
and an exception is thrown regardless of the--silently-ignore-bad-class-names
flag.The text was updated successfully, but these errors were encountered: