Skip to content

Commit 8b1ab60

Browse files
committed
Cleanup usings
1 parent b0834de commit 8b1ab60

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

src/Builder/Selection/SelectedConstructor.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
22

33
using System.Reflection;
4-
using Unity.Policy;
54

65
namespace Unity.Builder.Selection
76
{
87
/// <summary>
9-
/// Objects of this type are the return value from <see cref="IConstructorSelectorPolicy.SelectConstructor"/>.
8+
/// Objects of this type are the return value from
9+
/// <see cref="Unity.Policy.IConstructorSelectorPolicy.SelectConstructor"/>.
1010
/// It encapsulates the desired <see cref="ConstructorInfo"/> with the string keys
1111
/// needed to look up the <see cref="IResolverPolicy"/> for each
1212
/// parameter.

src/Policy/IMethodSelectorPolicy.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
22

33
using System.Collections.Generic;
4-
using System.Reflection;
54
using Unity.Builder;
65
using Unity.Builder.Selection;
76

87
namespace Unity.Policy
98
{
109
/// <summary>
1110
/// An <see cref="IBuilderPolicy"/> that will examine the given
12-
/// types and return a sequence of <see cref="MethodInfo"/> objects
11+
/// types and return a sequence of <see cref="System.Reflection.MethodInfo"/> objects
1312
/// that should be called as part of building the object.
1413
/// </summary>
1514
public interface IMethodSelectorPolicy : IBuilderPolicy

src/Policy/IPropertySelectorPolicy.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
22

33
using System.Collections.Generic;
4-
using System.Reflection;
54
using Unity.Builder;
65
using Unity.Builder.Selection;
76

@@ -20,7 +19,7 @@ public interface IPropertySelectorPolicy : IBuilderPolicy
2019
/// <param name="context">Current build context.</param>
2120
/// <param name="resolverPolicyDestination">The <see cref='IPolicyList'/> to add any
2221
/// generated resolver objects into.</param>
23-
/// <returns>Sequence of <see cref="PropertyInfo"/> objects
22+
/// <returns>Sequence of <see cref="System.Reflection.PropertyInfo"/> objects
2423
/// that contain the properties to set.</returns>
2524
IEnumerable<SelectedProperty> SelectProperties(IBuilderContext context, IPolicyList resolverPolicyDestination);
2625
}

0 commit comments

Comments
 (0)