Skip to content

Commit 5342532

Browse files
committed
Fix indentations
1 parent 1c7d406 commit 5342532

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/NHibernate/Util/ReflectHelper.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,11 @@ internal static MethodInfo FastGetMethod<T1, T2, TResult>(System.Func<T1, T2, TR
129129
}
130130

131131
/// <summary> Get a <see cref="MethodInfo"/> from a method group </summary>
132-
/// <param name="func">A method group</param>
132+
/// <param name="func">A method group</param>
133133
/// <param name="a1">A dummy parameter</param>
134134
/// <param name="a2">A dummy parameter</param>
135135
/// <param name="a3">A dummy parameter</param>
136-
internal static MethodInfo FastGetMethod<T1, T2, T3, TResult>(System.Func<T1, T2, T3, TResult> func, T1 a1, T2 a2, T3 a3)
136+
internal static MethodInfo FastGetMethod<T1, T2, T3, TResult>(System.Func<T1, T2, T3, TResult> func, T1 a1, T2 a2, T3 a3)
137137
{
138138
return func.Method;
139139
}
@@ -158,23 +158,23 @@ internal static MethodInfo FastGetMethodDefinition<T1, T2, TResult>(System.Func<
158158
}
159159

160160
/// <summary> Get a <see cref="MethodInfo"/> from a method group </summary>
161-
/// <param name="func">A method group</param>
161+
/// <param name="func">A method group</param>
162162
/// <param name="a1">A dummy parameter</param>
163163
/// <param name="a2">A dummy parameter</param>
164164
/// <param name="a3">A dummy parameter</param>
165-
internal static MethodInfo FastGetMethodDefinition<T1, T2, T3, TResult>(System.Func<T1, T2, T3, TResult> func, T1 a1, T2 a2, T3 a3)
165+
internal static MethodInfo FastGetMethodDefinition<T1, T2, T3, TResult>(System.Func<T1, T2, T3, TResult> func, T1 a1, T2 a2, T3 a3)
166166
{
167167
var method = func.Method;
168168
return method.IsGenericMethod ? method.GetGenericMethodDefinition() : method;
169169
}
170170

171171
/// <summary> Get a <see cref="MethodInfo"/> from a method group </summary>
172-
/// <param name="func">A method group</param>
172+
/// <param name="func">A method group</param>
173173
/// <param name="a1">A dummy parameter</param>
174174
/// <param name="a2">A dummy parameter</param>
175175
/// <param name="a3">A dummy parameter</param>
176176
/// <param name="a4">A dummy parameter</param>
177-
internal static MethodInfo FastGetMethodDefinition<T1, T2, T3, T4, TResult>(System.Func<T1, T2, T3, T4, TResult> func, T1 a1, T2 a2, T3 a3, T4 a4)
177+
internal static MethodInfo FastGetMethodDefinition<T1, T2, T3, T4, TResult>(System.Func<T1, T2, T3, T4, TResult> func, T1 a1, T2 a2, T3 a3, T4 a4)
178178
{
179179
var method = func.Method;
180180
return method.IsGenericMethod ? method.GetGenericMethodDefinition() : method;
@@ -441,7 +441,7 @@ public static System.Type ClassForName(string name)
441441
/// the method try to find the System.Type scanning all Assemblies of the <see cref="AppDomain.CurrentDomain"/>.
442442
/// </remarks>
443443
/// <exception cref="TypeLoadException">If no System.Type was found for <paramref name="classFullName"/>.</exception>
444-
public static System.Type ClassForFullName(string classFullName)
444+
public static System.Type ClassForFullName(string classFullName)
445445
{
446446
var result = ClassForFullNameOrNull(classFullName);
447447
if (result == null)

0 commit comments

Comments
 (0)