Add comment to linesplitter.bind.

Review URL: https://codereview.chromium.org/1695873002 .
This commit is contained in:
Florian Loitsch 2016-02-12 22:20:12 +01:00
parent cda760915c
commit a89ed4ad36

View file

@ -58,6 +58,7 @@ class LineSplitter extends Converter<String, List<String>> {
return new _LineSplitterSink(sink);
}
// Override the base-class' bind, to provide a better type.
Stream<String> bind(Stream<String> stream) => super.bind(stream);
}