remove unnecessary argument on PrintHelp

This commit is contained in:
Andrew Stanton-Nurse 2015-11-16 20:26:52 -08:00
parent 1dbc62866d
commit 8c5a0490b5

View file

@ -94,12 +94,8 @@ Common Commands:
}
}
private static void PrintHelp(string errorMessage = null)
private static void PrintHelp()
{
if(!string.IsNullOrEmpty(errorMessage))
{
Reporter.Error.WriteLine(errorMessage.Red());
}
Reporter.Output.WriteLine(HelpText);
}