Skip to content

Commit

Permalink
RC 4, Build
Browse files Browse the repository at this point in the history
  • Loading branch information
csmir committed Nov 16, 2024
1 parent a132710 commit 78e7fe4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,18 @@
[Name("overload")]
public class OverloadTests : ModuleBase
{
public void Get(bool value = false)
{

}
public string GetDefault => Get("someId");

[Name("get")]
public static void Get(string id = "")
public static string Get(string id = "")
{

return "OK!" + id;
}

[Name("get-other")]
public static void Get(string id, string name)
public static string Get(string id, string name)
{

return "OK!" + id + name;
}
}
}
1 change: 0 additions & 1 deletion src/Commands/Parsing/Arguments/ArgumentEnumerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ public sealed class ArgumentEnumerator
const char u0020 = ' ';

private int _size;
private int _searchSize;
private int _indexUnnamed = 0;

private readonly object[] _unnamedArgs;
Expand Down

0 comments on commit 78e7fe4

Please sign in to comment.