Skip to content

Commit

Permalink
Remove unnecessary comment
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas404x committed Feb 5, 2024
1 parent 2812930 commit e07ada1
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions MdXaml/LinkActions/HighlightOnlyCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,6 @@ public bool IsExecutable

public bool CanExecute(object? parameter) => _isExecutable;

public void Execute(object? parameter)
{
//var path = parameter?.ToString();
//if (path is null) throw new ArgumentNullException(nameof(parameter));

//Process.Start(new ProcessStartInfo(path)
//{
// UseShellExecute = true,
// Verb = "open"
//});
}
public void Execute(object? parameter) {}
}
}

0 comments on commit e07ada1

Please sign in to comment.