Skip to content
This repository was archived by the owner on Feb 19, 2025. It is now read-only.

Commit 4ae0622

Browse files
committed
Remove unneeded comment line
1 parent 26eb583 commit 4ae0622

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

UniqueFileGenerator/ArgParser.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,10 @@ public static ParsedArguments ParseArgs(string[] args)
9797
/// Determines if the given text in the format of a command line flag argument (e.g., "-e").
9898
/// </summary>
9999
/// <param name="text"></param>
100-
/// <returns></returns>
101100
private static bool IsInFlagFormat(string text)
102101
{
103102
return !string.IsNullOrWhiteSpace(text) &&
104103
text.Length == 2 &&
105104
text[0] == '-';
106105
}
107-
}
106+
}

0 commit comments

Comments
 (0)