[java-identity-provider] branch main updated: Fix quite confusing loop variable name.

Scott Cantor cantor.2 at osu.edu
Thu May 22 21:44:23 UTC 2025


This is an automated email from the git hooks/post-receive script.

scantor 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=0fbdefa316aeec8cc55dbd5eff01694141df28c5

The following commit(s) were added to refs/heads/main by this push:
     new 0fbdefa31 Fix quite confusing loop variable name.
0fbdefa31 is described below

commit 0fbdefa316aeec8cc55dbd5eff01694141df28c5
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu May 22 17:44:04 2025 -0400

    Fix quite confusing loop variable name.
---
 .../idp/saml/saml2/profile/impl/ValidateSAMLAuthentication.java   | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/impl/ValidateSAMLAuthentication.java b/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/impl/ValidateSAMLAuthentication.java
index 2354ccb77..40f9a03e8 100644
--- a/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/impl/ValidateSAMLAuthentication.java
+++ b/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/impl/ValidateSAMLAuthentication.java
@@ -549,10 +549,10 @@ public class ValidateSAMLAuthentication extends AbstractValidationAction {
             return;
         }
         
-        for (final TranscodingRule rules : transcodingRules) {
-            assert rules != null;
-            final AttributeTranscoder<Attribute> transcoder = TranscoderSupport.getTranscoder(rules);
-            final IdPAttribute decodedAttribute = transcoder.decode(profileRequestContext, input, rules);
+        for (final TranscodingRule rule : transcodingRules) {
+            assert rule != null;
+            final AttributeTranscoder<Attribute> transcoder = TranscoderSupport.getTranscoder(rule);
+            final IdPAttribute decodedAttribute = transcoder.decode(profileRequestContext, input, rule);
             if (decodedAttribute != null) {
                 results.put(decodedAttribute.getId(), decodedAttribute);
             }

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list