fix compilation of jdk9 docs tests (#177)
This commit is contained in:
parent
f3fdd13441
commit
982780b043
2 changed files with 4 additions and 4 deletions
|
|
@ -32,10 +32,10 @@ public interface AsSubscriber {
|
|||
public static final class Source {
|
||||
public
|
||||
// #api
|
||||
static <T> pekko.stream.javadsl.Source<T, Subscriber<T>> asSubscriber()
|
||||
static <T> org.apache.pekko.stream.javadsl.Source<T, Subscriber<T>> asSubscriber()
|
||||
// #api
|
||||
{
|
||||
return pekko.stream.javadsl.JavaFlowSupport.Source.<T>asSubscriber();
|
||||
return org.apache.pekko.stream.javadsl.JavaFlowSupport.Source.<T>asSubscriber();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -31,10 +31,10 @@ public interface FromPublisher {
|
|||
public static final class Source {
|
||||
public
|
||||
// #api
|
||||
static <T> pekko.stream.javadsl.Source<T, NotUsed> fromPublisher(Publisher<T> publisher)
|
||||
static <T> org.apache.pekko.stream.javadsl.Source<T, NotUsed> fromPublisher(Publisher<T> publisher)
|
||||
// #api
|
||||
{
|
||||
return pekko.stream.javadsl.JavaFlowSupport.Source.<T>fromPublisher(publisher);
|
||||
return org.apache.pekko.stream.javadsl.JavaFlowSupport.Source.<T>fromPublisher(publisher);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue