Skip to content

Commit

Permalink
Corrected error in Run method visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
crisfervil committed Oct 11, 2018
1 parent 4070293 commit 26bcafc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/XrmCommandBox/Tools/LookupTool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public LookupTool(IOrganizationService service)
_crmService = service;
}

public void Run(LookupToolOptions options, DataTable dataTable)
internal void Run(LookupToolOptions options, DataTable dataTable)
{
var sw = Stopwatch.StartNew();
int errorsCount = 0, recordCount = 0, progress = 0;
Expand Down

0 comments on commit 26bcafc

Please sign in to comment.