Repository: cxf Updated Branches: refs/heads/master fa69cb2c5 -> 92ad85893
[CXF-6401] - Fixing an issue with the last merge Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/92ad8589 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/92ad8589 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/92ad8589 Branch: refs/heads/master Commit: 92ad8589376082910f17c25b4e916177e64bde4b Parents: fa69cb2 Author: Colm O hEigeartaigh <[email protected]> Authored: Fri May 15 17:04:54 2015 +0100 Committer: Colm O hEigeartaigh <[email protected]> Committed: Fri May 15 17:06:01 2015 +0100 ---------------------------------------------------------------------- .../java/org/apache/cxf/ws/security/wss4j/WSS4JInInterceptor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/92ad8589/rt/ws/security/src/main/java/org/apache/cxf/ws/security/wss4j/WSS4JInInterceptor.java ---------------------------------------------------------------------- diff --git a/rt/ws/security/src/main/java/org/apache/cxf/ws/security/wss4j/WSS4JInInterceptor.java b/rt/ws/security/src/main/java/org/apache/cxf/ws/security/wss4j/WSS4JInInterceptor.java index 4d8c507..376b7fc 100644 --- a/rt/ws/security/src/main/java/org/apache/cxf/ws/security/wss4j/WSS4JInInterceptor.java +++ b/rt/ws/security/src/main/java/org/apache/cxf/ws/security/wss4j/WSS4JInInterceptor.java @@ -553,7 +553,7 @@ public class WSS4JInInterceptor extends AbstractWSS4JInterceptor { createSecurityContext(msg, useJAASSubject, result, utWithCallbacks); if (context != null) { msg.put(SecurityContext.class, context); - break; + return; } } }
