@@ -57,7 +57,7 @@ public bool Contains(Type type)
5757 /// <param name="type">The type to register.</param>
5858 public void Register ( Type type )
5959 {
60- this . EnsureNotLocked ( ) ;
60+ EnsureNotLocked ( ) ;
6161 ArgumentValidator . EnsureArgumentNotNull ( type , "type" ) ;
6262 if ( ! isProcessingPendingActions )
6363 Register ( new TypeRegistration ( type ) ) ;
@@ -78,7 +78,7 @@ public void Register(Type type)
7878 /// <exception cref="ArgumentNullException">When <paramref name="assembly"/> is null.</exception>
7979 public void Register ( Assembly assembly )
8080 {
81- this . EnsureNotLocked ( ) ;
81+ EnsureNotLocked ( ) ;
8282 ArgumentValidator . EnsureArgumentNotNull ( assembly , "assembly" ) ;
8383 Register ( new TypeRegistration ( assembly ) ) ;
8484 }
@@ -95,7 +95,7 @@ public void Register(Assembly assembly)
9595 /// or <paramref name="namespace"/> is empty string.</exception>
9696 public void Register ( Assembly assembly , string @namespace )
9797 {
98- this . EnsureNotLocked ( ) ;
98+ EnsureNotLocked ( ) ;
9999 ArgumentValidator . EnsureArgumentNotNull ( assembly , "assembly" ) ;
100100 ArgumentValidator . EnsureArgumentNotNullOrEmpty ( @namespace , "@namespace" ) ;
101101 Register ( new TypeRegistration ( assembly , @namespace ) ) ;
@@ -109,7 +109,7 @@ public void Register(Assembly assembly, string @namespace)
109109 /// otherwise, <see langword="false" />.</returns>
110110 public bool Register ( TypeRegistration action )
111111 {
112- this . EnsureNotLocked ( ) ;
112+ EnsureNotLocked ( ) ;
113113 ArgumentValidator . EnsureArgumentNotNull ( action , "action" ) ;
114114 if ( actionSet . Contains ( action ) )
115115 return false ;
@@ -143,7 +143,7 @@ private void ProcessPendingActions()
143143 /// <inheritdoc/>
144144 public override void Lock ( bool recursive )
145145 {
146- this . EnsureNotLocked ( ) ;
146+ EnsureNotLocked ( ) ;
147147 ProcessPendingActions ( ) ;
148148 assemblies = new ReadOnlyHashSet < Assembly > ( ( HashSet < Assembly > ) assemblies ) ;
149149 base . Lock ( recursive ) ;
0 commit comments