HADOOP-10547. Give SaslPropertiesResolver.getDefaultProperties() public scope. (Contributed by Benoy Antony)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1591095 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Arpit Agarwal 2014-04-29 20:38:36 +00:00
parent 7a241aee90
commit 871d81060d
2 changed files with 4 additions and 1 deletions

View File

@ -80,7 +80,7 @@ public class SaslPropertiesResolver implements Configurable{
* The default Sasl Properties read from the configuration
* @return sasl Properties
*/
protected Map<String,String> getDefaultProperties() {
public Map<String,String> getDefaultProperties() {
return properties;
}

View File

@ -415,6 +415,9 @@ Release 2.5.0 - UNRELEASED
HDFS-6288. DFSInputStream Pread doesn't update ReadStatistics.
(Juan Yu via wang)
HADOOP-10547. Give SaslPropertiesResolver.getDefaultProperties() public
scope. (Benoy Antony via Arpit Agarwal)
Release 2.4.1 - UNRELEASED
INCOMPATIBLE CHANGES