Skip to content

Commit 1c27e24

Browse files
rauhskzu
authored andcommitted
Remove "private" from new methods.
Just guessing what dotnet format wants...
1 parent 5c4f38a commit 1c27e24

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Moq/Extensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -519,9 +519,9 @@ public static Type SubstituteTypeMatchers(this Type type, Type other)
519519
return type;
520520
}
521521

522-
private static readonly ConcurrentDictionary<Tuple<Type, Type>, InterfaceMapping> mappingsCache = new();
522+
static readonly ConcurrentDictionary<Tuple<Type, Type>, InterfaceMapping> mappingsCache = new();
523523

524-
private static InterfaceMapping GetInterfaceMap(Type type, Type interfaceType)
524+
static InterfaceMapping GetInterfaceMap(Type type, Type interfaceType)
525525
{
526526
return mappingsCache.GetOrAdd(Tuple.Create(type, interfaceType), tuple => tuple.Item1.GetInterfaceMap(tuple.Item2));
527527
}

0 commit comments

Comments
 (0)