Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
dhalperi committed May 1, 2017
1 parent 7a99116 commit 693d012
Showing 1 changed file with 6 additions and 1 deletion.
Expand Up @@ -792,6 +792,11 @@ public abstract static class FileBasedWriter<T> {

/**
* The MIME type used in the creation of the output channel (if the file system supports it).
*
* <p>This is the default for the sink, but it may be overridden by a supplied
* {@link WritableByteChannelFactory}. For example, {@link TextIO.Write} uses
* {@link MimeTypes#TEXT} by default but if {@link CompressionType#BZIP2} is set then
* The MIME type will be overridden to {@link MimeTypes#BINARY}.
*/
private final String mimeType;

Expand Down Expand Up @@ -1025,7 +1030,7 @@ public interface WritableByteChannelFactory extends Serializable {

/**
* Returns the MIME type that should be used for the files that will hold the output data. May
* return {@code null} if this {@code WritableByteChannelFactory} does not meaningful change
* return {@code null} if this {@code WritableByteChannelFactory} does not meaningfully change
* the MIME type (e.g., for {@link CompressionType#UNCOMPRESSED}).
*
* @see MimeTypes
Expand Down

0 comments on commit 693d012

Please sign in to comment.