This is an automated email from the ASF dual-hosted git repository.

dkulp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cxf.git


The following commit(s) were added to refs/heads/master by this push:
     new 262b93c  [CXF-7470] Cannot set target for recovered source sequence
262b93c is described below

commit 262b93cc73ea6ce19cb69658f0ca681ec766d4d3
Author: Gergan Dimitrov <g.dimit...@seeburger.com>
AuthorDate: Mon Nov 20 15:48:17 2017 +0200

    [CXF-7470] Cannot set target for recovered source sequence
---
 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 f4b610f..b0dbbc7 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
['"commits@cxf.apache.org" <commits@cxf.apache.org>'].

Reply via email to