We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 113044a + f68f8ce commit 20fdc98Copy full SHA for 20fdc98
core/src/main/java/org/springframework/ldap/support/LdapNameBuilder.java
@@ -82,7 +82,7 @@ public static LdapNameBuilder newInstance(String name) {
82
*/
83
public LdapNameBuilder add(String key, Object value) {
84
Assert.hasText(key, "key must not be blank");
85
- Assert.notNull(key, "value must not be null");
+ Assert.notNull(value, "value must not be null");
86
87
try {
88
ldapName.add(new Rdn(key, value));
0 commit comments