File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed
Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,12 @@ static ACLProcessor() {
4242 } ;
4343 }
4444
45+ public ACLProcessor ( ILdapUtils utils , ILogger log = null )
46+ {
47+ _utils = utils ;
48+ _log = log ?? Logging . LogProvider . CreateLogger ( "ACLProc" ) ;
49+ }
50+
4551 /// Represents a lightweight Access Control Entry (ACE) used to compute hash values
4652 /// for AdminSDHolder purposes
4753 internal class ACEForHashing {
@@ -62,13 +68,6 @@ public override string ToString() {
6268 }
6369 }
6470
65-
66- public ACLProcessor ( ILdapUtils utils , ILogger log = null )
67- {
68- _utils = utils ;
69- _log = log ?? Logging . LogProvider . CreateLogger ( "ACLProc" ) ;
70- }
71-
7271 /// <summary>
7372 /// Builds a mapping of GUID -> Name for LDAP rights. Used for rights that are created using an extended schema such as
7473 /// LAPS
You can’t perform that action at this time.
0 commit comments