File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ public static class ReflectionCache
7
7
{
8
8
private static readonly Lazy < Type [ ] > _types = new Lazy < Type [ ] > ( ( ) => Asm . GetTypes ( ) ) ;
9
9
10
- public static readonly Assembly Asm = typeof ( ReflectionCache ) . Assembly ;
10
+ private static readonly Assembly Asm = typeof ( ReflectionCache ) . Assembly ;
11
11
12
12
public static Type [ ] Types => _types . Value ;
13
13
}
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ public static class ReflectionCache
11
11
{
12
12
private static readonly Lazy < Type [ ] > _types = new Lazy < Type [ ] > ( ( ) => Asm . GetTypesWithoutLoadErrors ( ) . ToArray ( ) ) ;
13
13
14
- public static readonly Assembly Asm = typeof ( ReflectionCache ) . Assembly ;
14
+ private static readonly Assembly Asm = typeof ( ReflectionCache ) . Assembly ;
15
15
16
16
public static Type [ ] Types => _types . Value ;
17
17
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ public static class ReflectionCache
7
7
{
8
8
private static readonly Lazy < Type [ ] > _types = new Lazy < Type [ ] > ( ( ) => Asm . GetTypes ( ) ) ;
9
9
10
- public static readonly Assembly Asm = typeof ( ReflectionCache ) . Assembly ;
10
+ private static readonly Assembly Asm = typeof ( ReflectionCache ) . Assembly ;
11
11
12
12
public static Type [ ] Types => _types . Value ;
13
13
}
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ public static class ReflectionCache
8
8
{
9
9
private static readonly Lazy < Type [ ] > _types = new Lazy < Type [ ] > ( ( ) => Asm . GetTypes ( ) ) ;
10
10
11
- public static readonly Assembly Asm = typeof ( ReflectionCache ) . Assembly ;
11
+ private static readonly Assembly Asm = typeof ( ReflectionCache ) . Assembly ;
12
12
13
13
public static Type [ ] Types => _types . Value ;
14
14
You can’t perform that action at this time.
0 commit comments