chore: fix wrong typo in message

This commit is contained in:
canbingzt
2024-02-28 16:58:49 +08:00
committed by Josh Cummings
parent 2409b3ca50
commit 2b156703d8

View File

@@ -450,7 +450,7 @@ public final class LdapUtils {
*/
public static LdapName prepend(Name dn, Name pathToPrepend) {
Assert.notNull(dn, "dn must not be null");
Assert.notNull(pathToPrepend, "pathToRemove must not be null");
Assert.notNull(pathToPrepend, "pathToPrepend must not be null");
LdapName result = newLdapName(dn);
try {