This is an automated email from the ASF dual-hosted git repository. dkulp pushed a commit to branch 3.1.x-fixes in repository https://gitbox.apache.org/repos/asf/cxf.git
commit d5de3cc18cefead621dd2310ed2851877ccee1bb Author: Daniel Kulp <[email protected]> AuthorDate: Mon Feb 26 12:11:45 2018 -0500 [CXF-7471] Use createResendCandidate() instead of constructor directly (cherry picked from commit bfd27cfed696520ccdfef5183f5a4f887884290a) --- .../main/java/org/apache/cxf/ws/rm/soap/RetransmissionQueueImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/soap/RetransmissionQueueImpl.java b/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/soap/RetransmissionQueueImpl.java index 8b801ac..1c912bf 100644 --- a/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/soap/RetransmissionQueueImpl.java +++ b/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/soap/RetransmissionQueueImpl.java @@ -323,7 +323,7 @@ public class RetransmissionQueueImpl implements RetransmissionQueue { * @param message the message context * @return a ResendCandidate */ - protected ResendCandidate createResendCandidate(SoapMessage message) { + protected ResendCandidate createResendCandidate(Message message) { return new ResendCandidate(message); } @@ -347,7 +347,7 @@ public class RetransmissionQueueImpl implements RetransmissionQueue { sequenceCandidates = new ArrayList<ResendCandidate>(); candidates.put(key, sequenceCandidates); } - candidate = new ResendCandidate(message); + candidate = createResendCandidate(message); if (isSequenceSuspended(key)) { candidate.suspend(); } -- To stop receiving notification emails like this one, please contact [email protected].
