[java-opensaml] 01/03: JSSH-71 Remove the impact of the DestructableComponent Interface
Codeberg
noreply at shibboleth.net
Tue Jul 21 13:02:47 UTC 2026
This is an automated email from the git hooks/post-receive script.
codeberg pushed a commit to branch main
in repository java-opensaml.
View the commit online:
https://codeberg.org/Shibboleth/java-opensaml/commit/e1eb803c28b2562ce6e04c8abf7d4e3737cd7ab0
commit e1eb803c28b2562ce6e04c8abf7d4e3737cd7ab0
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Mon Jul 20 19:43:13 2026 +0100
JSSH-71 Remove the impact of the DestructableComponent Interface
https://shibboleth.atlassian.net/browse/JSSH-71
Remove message encoder teardown from the AbstractPipelineHttpSOAPClient
---
.../opensaml/soap/client/http/AbstractPipelineHttpSOAPClient.java | 5 -----
1 file changed, 5 deletions(-)
diff --git a/opensaml-soap-api/src/main/java/org/opensaml/soap/client/http/AbstractPipelineHttpSOAPClient.java b/opensaml-soap-api/src/main/java/org/opensaml/soap/client/http/AbstractPipelineHttpSOAPClient.java
index 68120219f..a8fe53545 100644
--- a/opensaml-soap-api/src/main/java/org/opensaml/soap/client/http/AbstractPipelineHttpSOAPClient.java
+++ b/opensaml-soap-api/src/main/java/org/opensaml/soap/client/http/AbstractPipelineHttpSOAPClient.java
@@ -232,11 +232,6 @@ public abstract class AbstractPipelineHttpSOAPClient
throw new SOAPException("Client protocol problem sending SOAP request message to: " + endpoint, e);
} catch (final IOException e) {
throw new SOAPException("I/O problem with SOAP message exchange with: " + endpoint, e);
- } finally {
- if (pipeline != null) {
- pipeline.getEncoder().destroy();
- pipeline.getDecoder().destroy();
- }
}
}
// Checkstyle: CyclomaticComplexity|MethodLength ON
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list