From 8b23a2e472f97c81249dce0a382f7a28fb7a5f3b Mon Sep 17 00:00:00 2001 From: Kaz Sera Date: Tue, 3 Jan 2017 20:28:56 +0900 Subject: [PATCH 1/2] Fix a typo in org.reactivestreams.example.unicast.AsyncSubscriber --- .../org/reactivestreams/example/unicast/AsyncSubscriber.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/src/main/java/org/reactivestreams/example/unicast/AsyncSubscriber.java b/examples/src/main/java/org/reactivestreams/example/unicast/AsyncSubscriber.java index 35e85547..94c84cc5 100644 --- a/examples/src/main/java/org/reactivestreams/example/unicast/AsyncSubscriber.java +++ b/examples/src/main/java/org/reactivestreams/example/unicast/AsyncSubscriber.java @@ -199,7 +199,7 @@ else if (s instanceof OnSubscribe) handleOnSubscribe(((OnSubscribe)s).subscription); else if (s instanceof OnError) // We are always able to handle OnError, obeying rule 2.10 handleOnError(((OnError)s).error); - else if (s == OnComplete.Instance) // We are always able to handle OnError, obeying rule 2.9 + else if (s == OnComplete.Instance) // We are always able to handle OnComplete, obeying rule 2.9 handleOnComplete(); } } finally { @@ -235,4 +235,4 @@ private final void tryScheduleToExecute() { } } } -} \ No newline at end of file +} From 1b4f21f9a720737f2b599aed66ec49efaccea8fe Mon Sep 17 00:00:00 2001 From: Kaz Sera Date: Tue, 3 Jan 2017 21:04:13 +0900 Subject: [PATCH 2/2] Add @seratch to CopyrightWaivers.txt --- CopyrightWaivers.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CopyrightWaivers.txt b/CopyrightWaivers.txt index 47742988..7b642624 100644 --- a/CopyrightWaivers.txt +++ b/CopyrightWaivers.txt @@ -34,3 +34,4 @@ rstoyanchev | Rossen Stoyanchev, rstoyanchev@pivotal.io, Pivotal BjornHamels | Björn Hamels, bjorn@hamels.nl JakeWharton | Jake Wharton, jakewharton@gmail.com anthonyvdotbe | Anthony Vanelverdinghe, anthonyv.be@outlook.com +seratch | Kazuhiro Sera, seratch@gmail.com, SmartNews, Inc.