dkulp closed pull request #342: [CXF-7470] Cannot set target for recovered
source sequence
URL: https://github.com/apache/cxf/pull/342
This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:
As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):
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 f4b610f6330..b0dbbc7f520 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 @@ SequenceAcknowledgement getAcknowledgement() {
*
* @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;
}
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services