Merge pull request #20757 from kkasravi/issue_20543_kkasravi

Fixes #20543 GraphStage subtypes should not be private to akka
This commit is contained in:
Patrik Nordwall 2016-07-08 10:06:27 +02:00 committed by GitHub
commit b4cd30cf94
33 changed files with 152 additions and 136 deletions

View file

@ -272,7 +272,7 @@ object Sink {
final class Sink[-In, +Mat](delegate: scaladsl.Sink[In, Mat]) extends Graph[SinkShape[In], Mat] {
override def shape: SinkShape[In] = delegate.shape
private[stream] def module: StreamLayout.Module = delegate.module
def module: StreamLayout.Module = delegate.module
override def toString: String = delegate.toString