Skip to content

Commit

Permalink
Manually removing unused main args
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianBohe committed Feb 8, 2023
1 parent ea258a4 commit 21b369f
Showing 1 changed file with 1 addition and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ static void TestBitValue(uint value, double? dblValNullable = null, FPtoIntegerC
}
}

static int Main(string[] args)
static int Main()
{
switch (RuntimeInformation.ProcessArchitecture)
{
Expand All @@ -389,14 +389,6 @@ static int Main(string[] args)
break;
}
Console.WriteLine($"Expected managed float behavior is {Program.ManagedConversionRule} Execute with parameter to adjust");
if (args.Length > 0)
{
if (!Enum.TryParse(args[0], out ManagedConversionRule))
{
Console.WriteLine($"Unable to parse {args[0]}");
return 1;
}
}
Console.WriteLine("Specific test cases");

TestBitValue(0, 9223372036854777856.0);
Expand Down

0 comments on commit 21b369f

Please sign in to comment.