refactor(commands): remove args from parse command as it is no longer used anymore

This commit is contained in:
dusk 2025-01-12 05:55:25 +09:00
parent 58b5a26eca
commit a21210f3ce
No known key found for this signature in database
3 changed files with 0 additions and 7 deletions

View file

@ -19,7 +19,6 @@ public abstract record Parameter()
public class Parameters
{
private string _cb { get; init; }
private List<string> _args { get; init; }
private Dictionary<string, string?> _flags { get; init; }
private Dictionary<string, uniffi.commands.Parameter> _params { get; init; }
@ -34,7 +33,6 @@ public class Parameters
{
var command = ((CommandResult.Ok)result).@command;
_cb = command.@commandRef;
_args = command.@args;
_flags = command.@flags;
_params = command.@params;
}