diff --git a/CopyrightWaivers.txt b/CopyrightWaivers.txt index 83f42253..2a18e5eb 100644 --- a/CopyrightWaivers.txt +++ b/CopyrightWaivers.txt @@ -45,5 +45,6 @@ jroper | James Roper, james@jazzy.id.au, Lightbend Inc. olegdokuka | Oleh Dokuka, shadowgun@.i.ua, Netifi Inc. Scottmitch | Scott Mitchell, scott_mitchell@apple.com, Apple Inc. retronym | Jason Zaugg, jzaugg@gmail.com, Lightbend Inc. +lucav76 | Luca Venturi, lventuri76@gmail.com sullis | Sean Sullivan, github@seansullivan.com diff --git a/tck-flow/README.md b/tck-flow/README.md index a007541d..63426f7f 100644 --- a/tck-flow/README.md +++ b/tck-flow/README.md @@ -327,7 +327,7 @@ public class MyFlowSubscriberWhiteboxVerificationTest extends FlowSubscriberWhit // class SyncSubscriber extends Flow.Subscriber { /* ... */ } @Override - public Flow.Subscriber createSubscriber(final WhiteboxSubscriberProbe probe) { + public Flow.Subscriber createFlowSubscriber(final WhiteboxSubscriberProbe probe) { // in order to test the SyncSubscriber we must instrument it by extending it, // and calling the WhiteboxSubscriberProbe in all of the Subscribers methods: return new SyncSubscriber() { @@ -402,7 +402,7 @@ public class MyFlowSubscriberBlackboxVerificationTest extends FlowSubscriberBlac } @Override - public Flow.Subscriber createSubscriber() { + public Flow.Subscriber createFlowSubscriber() { return new MySubscriber(); }