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 multiple options exist for a given method completion, like find(Iterable) and find(Object), ordering and de-duplication do not take into account the best match for the receiver type. For example, when the completion type is a List, there is a findAll extension method for List and a more general one for Collection. Only one is proposed for completion and at the moment they are assigned equal relevance, so the last one declared in the one proposed.
The text was updated successfully, but these errors were encountered:
When multiple options exist for a given method completion, like
find(Iterable)
andfind(Object)
, ordering and de-duplication do not take into account the best match for the receiver type. For example, when the completion type is aList
, there is afindAll
extension method forList
and a more general one forCollection
. Only one is proposed for completion and at the moment they are assigned equal relevance, so the last one declared in the one proposed.The text was updated successfully, but these errors were encountered: