[java-identity-provider] branch main updated: Javadoc or constraint message typos
Tom Zeller
tzeller at dragonacea.biz
Tue Feb 27 22:51:11 UTC 2024
This is an automated email from the git hooks/post-receive script.
tzeller pushed a commit to branch main
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=a194ec16281f3b2c363b2603f513354774e56b8c
The following commit(s) were added to refs/heads/main by this push:
new a194ec162 Javadoc or constraint message typos
a194ec162 is described below
commit a194ec16281f3b2c363b2603f513354774e56b8c
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Tue Feb 27 16:50:58 2024 -0600
Javadoc or constraint message typos
---
.../src/main/java/net/shibboleth/idp/ui/helper/AttributeHelper.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/idp-ui/src/main/java/net/shibboleth/idp/ui/helper/AttributeHelper.java b/idp-ui/src/main/java/net/shibboleth/idp/ui/helper/AttributeHelper.java
index 350df33be..501724574 100644
--- a/idp-ui/src/main/java/net/shibboleth/idp/ui/helper/AttributeHelper.java
+++ b/idp-ui/src/main/java/net/shibboleth/idp/ui/helper/AttributeHelper.java
@@ -58,7 +58,7 @@ public final class AttributeHelper extends AbstractIdentifiableInitializableComp
*/
@Nullable public IdPAttributeValue getFirstAttributeValue(@Nonnull final ProfileRequestContext prc,
@Nonnull @NotEmpty final String attributeName) {
- Constraint.isNotNull(attributeName, "Attribute Name must be non-niull");
+ Constraint.isNotNull(attributeName, "Attribute Name must be non-null");
final AttributeContext context = attributeContextStrategy.apply(prc);
if (context == null) {
log.error("Attribute Context could not be located");
@@ -103,7 +103,7 @@ public final class AttributeHelper extends AbstractIdentifiableInitializableComp
@Nullable public IdPAttributeValue getFirstUnfilteredAttributeValue(@Nonnull final ProfileRequestContext prc,
@Nonnull @NotEmpty final String attributeName) {
- Constraint.isNotNull(attributeName, "Attribute Name must be non-niull");
+ Constraint.isNotNull(attributeName, "Attribute Name must be non-null");
final AttributeContext context = attributeContextStrategy.apply(prc);
if (context == null) {
log.error("Attribute Context could not be located");
@@ -150,7 +150,7 @@ public final class AttributeHelper extends AbstractIdentifiableInitializableComp
*
* @param attribute the Attribute or null if there wasn't one
*
- * @return the first attribute valkue or null
+ * @return the first attribute value or null
*/
@Nullable private IdPAttributeValue getFirstValue(@Nullable final IdPAttribute attribute) {
if (attribute == null) {
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list