Skip to content

Commit 0bf150c

Browse files
committed
fix: PR comments
1 parent 18641e5 commit 0bf150c

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

src/CommonLib/Processors/ACLProcessor.cs

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)