!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/6cd48c42 Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/6cd48c42 Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/6cd48c42 Branch: refs/heads/gearpump-runner Commit: 6cd48c4256539aa45e535729a7a1042f7ccb66fd Parents: 34c731f Author: Luke Cwik <lc...@google.com> Authored: Wed Sep 7 15:38:16 2016 -0700 Committer: Dan Halperin <dhalp...@google.com> Committed: Mon Sep 12 17:40:14 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/6cd48c42/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 */