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
When matching xml to class methods to satisfy a <Call> clause, the code currently prefers matching an argument that is an interface rather than an exact class type match.
In other words, given the following java code:
The method callStaticWithVarArgs(TestInterface i, String... strings) is ranked higher than the alternative method - which is actually an exact match - and thus selected.
The text was updated successfully, but these errors were encountered:
jetty-12
When matching xml to class methods to satisfy a
<Call>
clause, the code currently prefers matching an argument that is an interface rather than an exact class type match.In other words, given the following java code:
And given the following xml:
The method
callStaticWithVarArgs(TestInterface i, String... strings)
is ranked higher than the alternative method - which is actually an exact match - and thus selected.The text was updated successfully, but these errors were encountered: