Skip to content

Commit 6719223

Browse files
committed
Make the CreateBuiltInTypeParsers() method in CommandLineArgumentsConfiguration static
Fixes #42
1 parent 2a3afc1 commit 6719223

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/AtleX.CommandLineArguments/Configuration/CommandLineArgumentsConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public void Add(TypeParser typeParser)
111111
/// <returns>
112112
/// A <see cref="List{T}"/> with an instance of all built-in type validators
113113
/// </returns>
114-
private List<ArgumentValidator> CreateBuiltInValidators()
114+
private static List<ArgumentValidator> CreateBuiltInValidators()
115115
{
116116
var result = new List<ArgumentValidator>()
117117
{

0 commit comments

Comments
 (0)