HDFS-5407. Fix typos in DFSClientCache. Contributed by Haohui Mai

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1544362 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brandon Li 2013-11-21 23:08:40 +00:00
parent a379a7bbb9
commit 82d0e820d0
2 changed files with 4 additions and 2 deletions

View File

@ -99,7 +99,7 @@ public int hashCode() {
this.config = config;
this.clientCache = CacheBuilder.newBuilder()
.maximumSize(clientCache)
.removalListener(clientRemovealListener())
.removalListener(clientRemovalListener())
.build(clientLoader());
this.inputstreamCache = CacheBuilder.newBuilder()
@ -127,7 +127,7 @@ public DFSClient run() throws IOException {
};
}
private RemovalListener<String, DFSClient> clientRemovealListener() {
private RemovalListener<String, DFSClient> clientRemovalListener() {
return new RemovalListener<String, DFSClient>() {
@Override
public void onRemoval(RemovalNotification<String, DFSClient> notification) {

View File

@ -716,6 +716,8 @@ Release 2.2.1 - UNRELEASED
HDFS-5288. Close idle connections in portmap (Haohui Mai via brandonli)
HDFS-5407. Fix typos in DFSClientCache (Haohui Mai via brandonli)
Release 2.2.0 - 2013-10-13
INCOMPATIBLE CHANGES