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
commit 14d625954edc65b81e4773d8132e9204236b4a3e Author: Daniel Kulp <[email protected]> AuthorDate: Fri Nov 10 10:39:50 2017 -0500 Fix compile failure --- .../apache/cxf/systest/jaxrs/reactive/RxJava2FlowableService.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/reactive/RxJava2FlowableService.java b/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/reactive/RxJava2FlowableService.java index 7812977..05b1dd0 100644 --- a/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/reactive/RxJava2FlowableService.java +++ b/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/reactive/RxJava2FlowableService.java @@ -29,7 +29,7 @@ import javax.ws.rs.Produces; import javax.ws.rs.container.AsyncResponse; import javax.ws.rs.container.Suspended; -import org.apache.cxf.jaxrs.rx2.server.AbstractAsyncSubscriber; +import org.apache.cxf.jaxrs.rx2.server.AbstractSubscriber; import org.apache.cxf.jaxrs.rx2.server.JsonStreamingAsyncSubscriber; import io.reactivex.Flowable; @@ -84,7 +84,7 @@ public class RxJava2FlowableService { } - private static class StringAsyncSubscriber extends AbstractAsyncSubscriber<String> { + private static class StringAsyncSubscriber extends AbstractSubscriber<String> { private StringBuilder sb = new StringBuilder(); StringAsyncSubscriber(AsyncResponse ar) { @@ -103,7 +103,7 @@ public class RxJava2FlowableService { } - private static class ListAsyncSubscriber<T> extends AbstractAsyncSubscriber<T> { + private static class ListAsyncSubscriber<T> extends AbstractSubscriber<T> { private List<T> beans = new LinkedList<T>(); ListAsyncSubscriber(AsyncResponse ar) { -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
