Skip to content

Commit

Permalink
Fix up for 16.11
Browse files Browse the repository at this point in the history
  • Loading branch information
333fred committed May 5, 2021
1 parent 3f25651 commit 28955d0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ public OmniSharpPickMembersService(IOmniSharpPickMembersService omniSharpPickMem
_omniSharpPickMembersService = omniSharpPickMembersService;
}

public PickMembersResult PickMembers(string title, ImmutableArray<ISymbol> members, ImmutableArray<PickMembersOption> options = default, bool selectAll = true)
public PickMembersResult PickMembers(string title, ImmutableArray<ISymbol> members, ImmutableArray<PickMembersOption> options = default)
{
var result = _omniSharpPickMembersService.PickMembers(title, members, options.SelectAsArray(o => new OmniSharpPickMembersOption(o)), selectAll);
return new(result.Members, result.Options.SelectAsArray(o => o.PickMembersOptionInternal), result.SelectedAll);
var result = _omniSharpPickMembersService.PickMembers(title, members, options.SelectAsArray(o => new OmniSharpPickMembersOption(o)), selectAll: true);
return new(result.Members, result.Options.SelectAsArray(o => o.PickMembersOptionInternal));
}
}
}

0 comments on commit 28955d0

Please sign in to comment.