[java-shib-shared] branch main updated: Reverse delimiter handling in property.
Scott Cantor
cantor.2 at osu.edu
Thu Feb 15 18:49:36 UTC 2024
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-shib-shared.
View the commit online:
http://git.shibboleth.net/view/?p=java-shib-shared.git;a=commit;h=319d542ebe379619a86957dcc5e9375b0dec42b5
The following commit(s) were added to refs/heads/main by this push:
new 319d542e Reverse delimiter handling in property.
319d542e is described below
commit 319d542ebe379619a86957dcc5e9375b0dec42b5
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Feb 15 13:49:33 2024 -0500
Reverse delimiter handling in property.
---
.../spring/context/AbstractPropertiesApplicationContextInitializer.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/shib-spring/src/main/java/net/shibboleth/shared/spring/context/AbstractPropertiesApplicationContextInitializer.java b/shib-spring/src/main/java/net/shibboleth/shared/spring/context/AbstractPropertiesApplicationContextInitializer.java
index d5ea87c7..ee20175c 100644
--- a/shib-spring/src/main/java/net/shibboleth/shared/spring/context/AbstractPropertiesApplicationContextInitializer.java
+++ b/shib-spring/src/main/java/net/shibboleth/shared/spring/context/AbstractPropertiesApplicationContextInitializer.java
@@ -243,7 +243,7 @@ public abstract class AbstractPropertiesApplicationContextInitializer
// Track the duplicate in a special property for later reporting.
final String warningPropertyValue = sink.getProperty(getDuplicateWarningPropertyName(), "");
- sink.setProperty(getDuplicateWarningPropertyName(), warningPropertyValue + "," + entry.getKey());
+ sink.setProperty(getDuplicateWarningPropertyName(), warningPropertyValue + entry.getKey() + ",");
}
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list