Skip to content

Commit d9f11bb

Browse files
committed
Made all types internal
1 parent 95b2fba commit d9f11bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Reflectify/Reflectify.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ private static IEnumerable<MethodInfo> GetConversionOperators(this Type type, Ty
457457
}
458458
}
459459

460-
public static class TypeExtensions
460+
internal static class TypeExtensions
461461
{
462462
/// <summary>
463463
/// If the type provided is a nullable type, gets the underlying type. Returns the type itself otherwise.
@@ -501,7 +501,7 @@ public static bool HasAttributeInHierarchy<TAttribute>(this MemberInfo type)
501501
}
502502
}
503503

504-
public static class PropertyInfoExtensions
504+
internal static class PropertyInfoExtensions
505505
{
506506
/// <summary>
507507
/// Returns <c>true</c> if the property is an indexer, or <c>false</c> otherwise.

0 commit comments

Comments
 (0)