mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-07 22:37:54 +00:00
refactor(commands): remove args from parse command as it is no longer used anymore
This commit is contained in:
parent
58b5a26eca
commit
a21210f3ce
3 changed files with 0 additions and 7 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue