Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id C8B4A200C5C for ; Thu, 6 Apr 2017 08:21:52 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id C7665160B94; Thu, 6 Apr 2017 06:21:52 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 7DFBD160B86 for ; Thu, 6 Apr 2017 08:21:51 +0200 (CEST) Received: (qmail 72982 invoked by uid 500); 6 Apr 2017 06:21:50 -0000 Mailing-List: contact commits-help@beam.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@beam.apache.org Delivered-To: mailing list commits@beam.apache.org Received: (qmail 72973 invoked by uid 99); 6 Apr 2017 06:21:50 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Apr 2017 06:21:50 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 91A86DFDAC; Thu, 6 Apr 2017 06:21:50 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: jbonofre@apache.org To: commits@beam.apache.org Message-Id: <87172c916c3440c0a161af9e3bf12de8@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: beam git commit: Fix checkstyle issue Date: Thu, 6 Apr 2017 06:21:50 +0000 (UTC) archived-at: Thu, 06 Apr 2017 06:21:53 -0000 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é Authored: Thu Apr 6 08:21:38 2017 +0200 Committer: Jean-Baptiste Onofré 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 extends Source { * 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 + *

If there is no way to estimate the size of the source + * implementations MAY return 0L. */ public abstract long getEstimatedSizeBytes(PipelineOptions options) throws Exception;