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 99d333873436b9dcf58a5ca4ec837b353f2b1b6b Author: Gergan Dimitrov <[email protected]> AuthorDate: Mon Nov 20 15:48:17 2017 +0200 [CXF-7470] Cannot set target for recovered source sequence (cherry picked from commit 262b93cc73ea6ce19cb69658f0ca681ec766d4d3) --- rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/SourceSequence.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/SourceSequence.java b/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/SourceSequence.java index 4eb5f92..ba760ef 100644 --- a/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/SourceSequence.java +++ b/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/SourceSequence.java @@ -271,13 +271,13 @@ public class SourceSequence extends AbstractSequence { * * @param to */ - synchronized void setTarget(EndpointReferenceType to) { + public synchronized void setTarget(EndpointReferenceType to) { if (target == null && !ContextUtils.isGenericAddress(to)) { target = to; } } - synchronized EndpointReferenceType getTarget() { + public synchronized EndpointReferenceType getTarget() { return target; } -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
