Repository: beam Updated Branches: refs/heads/master 766a02dbc -> 9c284d625
Fix checkstyle issue Project: http://git-wip-us.apache.org/repos/asf/beam/repo Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/9c284d62 Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/9c284d62 Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/9c284d62 Branch: refs/heads/master Commit: 9c284d6257f44b343af606ff9e47b9623484f9d1 Parents: 766a02d Author: Jean-Baptiste Onofré <[email protected]> Authored: Thu Apr 6 08:21:38 2017 +0200 Committer: Jean-Baptiste Onofré <[email protected]> Committed: Thu Apr 6 08:21:38 2017 +0200 ---------------------------------------------------------------------- .../core/src/main/java/org/apache/beam/sdk/io/BoundedSource.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/beam/blob/9c284d62/sdks/java/core/src/main/java/org/apache/beam/sdk/io/BoundedSource.java ---------------------------------------------------------------------- diff --git a/sdks/java/core/src/main/java/org/apache/beam/sdk/io/BoundedSource.java b/sdks/java/core/src/main/java/org/apache/beam/sdk/io/BoundedSource.java index 889f9ab..cd389e8 100644 --- a/sdks/java/core/src/main/java/org/apache/beam/sdk/io/BoundedSource.java +++ b/sdks/java/core/src/main/java/org/apache/beam/sdk/io/BoundedSource.java @@ -62,8 +62,8 @@ public abstract class BoundedSource<T> extends Source<T> { * This estimate is in terms of external storage size, before any decompression or other * processing done by the reader. * - * If there is no way to estimate the size of the source - * implementations MAY return 0L + * <p>If there is no way to estimate the size of the source + * implementations MAY return 0L. */ public abstract long getEstimatedSizeBytes(PipelineOptions options) throws Exception;
