You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mapreduce-dev@hadoop.apache.org by "Sahil Kang (JIRA)" <ji...@apache.org> on 2016/07/11 04:16:10 UTC

[jira] [Created] (MAPREDUCE-6730) Use StandardCharsets instead of String overload

Sahil Kang created MAPREDUCE-6730:
-------------------------------------

             Summary: Use StandardCharsets instead of String overload
                 Key: MAPREDUCE-6730
                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-6730
             Project: Hadoop Map/Reduce
          Issue Type: Improvement
            Reporter: Sahil Kang
            Priority: Minor


In TextOutputFormat.java, instead of:
{code:java}
private static final String utf8 = "UTF-8";
private static final byte[] newline;
static {
  try {
    newline = "\n".getBytes(utf8);
  } catch (UnsupportedException uee) {
    threw new IllegalArgumentException("can't find " + utf8 + " encoding");
  }
}
{code}

Let's do something like:
{code:java}
private static final byte[] newline = "\n".getBytes(StandardCharsets.UTF_8);
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: mapreduce-dev-unsubscribe@hadoop.apache.org
For additional commands, e-mail: mapreduce-dev-help@hadoop.apache.org