HDFS-7194 Fix findbugs "inefficient new String constructor" warning in DFSClient#PATH (yzhang via cmccabe)
This commit is contained in:
parent
687d83c9e1
commit
8dc6abf2f4
@ -365,11 +365,15 @@ Release 2.7.0 - UNRELEASED
|
|||||||
NEW FEATURES
|
NEW FEATURES
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
|
|
||||||
HDFS-7055. Add tracing to DFSInputStream (cmccabe)
|
HDFS-7055. Add tracing to DFSInputStream (cmccabe)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
BUG FIXES
|
BUG FIXES
|
||||||
|
|
||||||
|
HDFS-7194. Fix findbugs "inefficient new String constructor" warning in
|
||||||
|
DFSClient#PATH (yzhang via cmccabe)
|
||||||
|
|
||||||
Release 2.6.0 - UNRELEASED
|
Release 2.6.0 - UNRELEASED
|
||||||
|
|
||||||
|
@ -3174,8 +3174,7 @@ public SaslDataTransferClient getSaslDataTransferClient() {
|
|||||||
return saslClient;
|
return saslClient;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static final byte[] PATH =
|
private static final byte[] PATH = "path".getBytes(Charset.forName("UTF-8"));
|
||||||
new String("path").getBytes(Charset.forName("UTF-8"));
|
|
||||||
|
|
||||||
TraceScope getPathTraceScope(String description, String path) {
|
TraceScope getPathTraceScope(String description, String path) {
|
||||||
TraceScope scope = Trace.startSpan(description, traceSampler);
|
TraceScope scope = Trace.startSpan(description, traceSampler);
|
||||||
|
Loading…
Reference in New Issue
Block a user