You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by lc...@apache.org on 2016/09/07 22:39:43 UTC

[7/8] incubator-beam git commit: !fixup Minor javadoc clean-up

!fixup Minor javadoc clean-up


Project: http://git-wip-us.apache.org/repos/asf/incubator-beam/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam/commit/ce1294dd
Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/ce1294dd
Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/ce1294dd

Branch: refs/heads/master
Commit: ce1294dd5dfad80b7a154bb1ef52836b7770eb32
Parents: f21875e
Author: Luke Cwik <lc...@google.com>
Authored: Wed Sep 7 15:38:16 2016 -0700
Committer: Luke Cwik <lc...@google.com>
Committed: Wed Sep 7 15:38:16 2016 -0700

----------------------------------------------------------------------
 .../src/main/java/org/apache/beam/sdk/io/TextIO.java    | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/ce1294dd/sdks/java/core/src/main/java/org/apache/beam/sdk/io/TextIO.java
----------------------------------------------------------------------
diff --git a/sdks/java/core/src/main/java/org/apache/beam/sdk/io/TextIO.java b/sdks/java/core/src/main/java/org/apache/beam/sdk/io/TextIO.java
index e4fcc32..c0761b1 100644
--- a/sdks/java/core/src/main/java/org/apache/beam/sdk/io/TextIO.java
+++ b/sdks/java/core/src/main/java/org/apache/beam/sdk/io/TextIO.java
@@ -452,7 +452,7 @@ public class TextIO {
      * Returns a transform for writing to text files that adds a header string to the files
      * it writes.
      *
-     *<p> A <code>null</code> value will clear any previously configured header.</p>
+     * <p>A {@code null} value will clear any previously configured header.
      *
      * @param header the string to be added as file header
      */
@@ -464,7 +464,7 @@ public class TextIO {
      * Returns a transform for writing to text files that adds a footer string to the files
      * it writes.
      *
-     *<p> A <code>null</code> value will clear any previously configured footer.</p>
+     * <p>A {@code null} value will clear any previously configured footer.
      *
      * @param footer the string to be added as file footer
      */
@@ -636,7 +636,9 @@ public class TextIO {
        * Returns a transform for writing to text files that adds a header string to the files
        * it writes.
        *
-       *<p> A <code>null</code> value will clear any previously configured header.</p>
+       * <p>A {@code null} value will clear any previously configured header.
+       *
+       * <p>Does not modify this object.
        *
        * @param header the string to be added as file header
        */
@@ -649,7 +651,9 @@ public class TextIO {
        * Returns a transform for writing to text files that adds a footer string to the files
        * it writes.
        *
-       *<p> A <code>null</code> value will clear any previously configured footer.</p>
+       * <p>A {@code null} value will clear any previously configured footer.
+       *
+       * <p>Does not modify this object.
        *
        * @param footer the string to be added as file footer
        */