Skip to content

Commit e746cc9

Browse files
committed
clean usings
1 parent db447ad commit e746cc9

13 files changed

+25
-13
lines changed

FluentCommandLineParser.Tests/FluentCommandLineParser/when_executing_parse_operation/with_a_parser_engine_that_is_custom.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
#endregion
2424

2525
using System.Collections.Generic;
26-
using Fclp.Internals;
2726
using Fclp.Internals.Parsing;
2827
using Fclp.Tests.FluentCommandLineParser.TestContext;
2928
using Machine.Specifications;

FluentCommandLineParser.Tests/FluentCommandLineParser/when_executing_parse_operation/with_options_that_have_not_been_setup.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424

2525
using System.Collections.Generic;
2626
using System.Linq;
27-
using Fclp.Internals;
2827
using Fclp.Internals.Parsing;
2928
using Fclp.Tests.FluentCommandLineParser.TestContext;
3029
using Machine.Specifications;

FluentCommandLineParser.Tests/HelperExtensions.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
// POSSIBILITY OF SUCH DAMAGE.
2323
#endregion
2424

25-
using Fclp.Internals;
2625
using Fclp.Internals.Parsing;
2726

2827
namespace FluentCommandLineParser.Tests

FluentCommandLineParser.Tests/Internals/CommandLineOptionGrouperTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
// POSSIBILITY OF SUCH DAMAGE.
2323
#endregion
2424

25-
using Fclp.Internals;
2625
using Fclp.Internals.Parsing;
2726
using Machine.Specifications;
2827

FluentCommandLineParser.Tests/Internals/CommandLineOptionParserFactoryTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424

2525
using System;
2626
using Fclp;
27-
using Fclp.Internals;
2827
using Fclp.Internals.Parsing.OptionParsers;
2928
using Moq;
3029
using NUnit.Framework;

FluentCommandLineParser.Tests/Internals/CommandLineParserEngine/Behaviour/NoResultsBehaviour.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424

2525
using System;
2626
using System.Collections.Generic;
27-
using Fclp.Internals;
2827
using Fclp.Internals.Parsing;
2928
using Machine.Specifications;
3029

FluentCommandLineParser.Tests/Internals/CommandLineParserEngine/TestContext/CommandLineParserEngineTestContext.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424

2525
using System.Collections.Generic;
2626
using System.Linq;
27-
using Fclp.Internals;
2827
using Fclp.Internals.Parsing;
2928
using Machine.Specifications;
3029

FluentCommandLineParser.Tests/Internals/CommandLineParserEngine/when_arg_contains_key_and_value_assignment_but_no_value.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
// POSSIBILITY OF SUCH DAMAGE.
2323
#endregion
2424

25-
using Fclp.Internals;
2625
using Fclp.Internals.Parsing;
2726
using Fclp.Tests.CommandLineParserEngine;
2827
using Machine.Specifications;

FluentCommandLineParser.Tests/Internals/CommandLineParserEngine/when_args_contains_a_boolean_option_that_ends_with_no_sign.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
// POSSIBILITY OF SUCH DAMAGE.
2323
#endregion
2424

25-
using Fclp.Internals;
2625
using Fclp.Internals.Parsing;
2726
using Machine.Specifications;
2827

FluentCommandLineParser.Tests/Internals/CommandLineParserEngineMark2Tests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
#endregion
2424

2525
using System.Linq;
26-
using Fclp.Internals;
2726
using Fclp.Internals.Extensions;
2827
using Fclp.Internals.Parsing;
2928
using Machine.Specifications;

FluentCommandLineParser.Tests/TestContext/TestContext.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
using System.Collections.Generic;
2727
using System.Globalization;
2828
using System.Linq;
29-
using Fclp.Internals;
3029
using Fclp.Internals.Parsing;
3130
using Machine.Specifications;
3231

FluentCommandLineParser/Internals/Parsing/OptionArgumentParser.cs

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,28 @@
1-
using System;
1+
#region License
2+
// OptionArgumentParser.cs
3+
// Copyright (c) 2013, Simon Williams
4+
// All rights reserved.
5+
//
6+
// Redistribution and use in source and binary forms, with or without modification, are permitted provide
7+
// d that the following conditions are met:
8+
//
9+
// Redistributions of source code must retain the above copyright notice, this list of conditions and the
10+
// following disclaimer.
11+
//
12+
// Redistributions in binary form must reproduce the above copyright notice, this list of conditions and
13+
// the following disclaimer in the documentation and/or other materials provided with the distribution.
14+
//
15+
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
16+
// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
17+
// PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
18+
// ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
19+
// TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20+
// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
21+
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
22+
// POSSIBILITY OF SUCH DAMAGE.
23+
#endregion
24+
25+
using System;
226
using System.Collections.Generic;
327
using System.Linq;
428
using Fclp.Internals.Extensions;

FluentCommandLineParser/Internals/Parsing/OptionParsers/ICommandLineOptionParser.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2222
// POSSIBILITY OF SUCH DAMAGE.
2323
#endregion
24-
2524
namespace Fclp.Internals.Parsing.OptionParsers
2625
{
2726
/// <summary>

0 commit comments

Comments
 (0)