HDFS-5938. Make BlockReaderFactory#BlockReaderPeer a static class to avoid a findbugs warning (cmccabe)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1567767 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
beb0d25d2a
commit
b3af8edc26
|
@ -422,6 +422,9 @@ Release 2.4.0 - UNRELEASED
|
|||
HDFS-5879. Some TestHftpFileSystem tests do not close streams.
|
||||
(Gera Shegalov via suresh)
|
||||
|
||||
HDFS-5938. Make BlockReaderFactory#BlockReaderPeer a static class to avoid
|
||||
a findbugs warning. (cmccabe)
|
||||
|
||||
Release 2.3.1 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -663,7 +663,7 @@ public class BlockReaderFactory implements ShortCircuitReplicaCreator {
|
|||
return null;
|
||||
}
|
||||
|
||||
private class BlockReaderPeer {
|
||||
private static class BlockReaderPeer {
|
||||
final Peer peer;
|
||||
final boolean fromCache;
|
||||
|
||||
|
|
Loading…
Reference in New Issue