HDFS-7194 Fix findbugs "inefficient new String constructor" warning in DFSClient#PATH (yzhang via cmccabe)

This commit is contained in:
Colin Patrick Mccabe 2014-10-06 15:29:09 -07:00
parent 687d83c9e1
commit 8dc6abf2f4
2 changed files with 5 additions and 2 deletions

View File

@ -365,11 +365,15 @@ Release 2.7.0 - UNRELEASED
NEW FEATURES
IMPROVEMENTS
HDFS-7055. Add tracing to DFSInputStream (cmccabe)
OPTIMIZATIONS
BUG FIXES
HDFS-7194. Fix findbugs "inefficient new String constructor" warning in
DFSClient#PATH (yzhang via cmccabe)
Release 2.6.0 - UNRELEASED

View File

@ -3174,8 +3174,7 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
return saslClient;
}
private static final byte[] PATH =
new String("path").getBytes(Charset.forName("UTF-8"));
private static final byte[] PATH = "path".getBytes(Charset.forName("UTF-8"));
TraceScope getPathTraceScope(String description, String path) {
TraceScope scope = Trace.startSpan(description, traceSampler);