Merge -r 1190094:1190095 from trunk to branch. Fixes: HADOOP-7778.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1190097 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas White 2011-10-27 23:54:28 +00:00
parent 0991b7560e
commit 14a2aa36d5
2 changed files with 3 additions and 1 deletions

View File

@ -690,6 +690,8 @@ Release 0.23.0 - Unreleased
HADOOP-7721. Add log before login in KerberosAuthenticationHandler. (jitendra)
HADOOP-7778. FindBugs warning in Token.getKind(). (tomwhite)
Release 0.22.0 - Unreleased
INCOMPATIBLE CHANGES

View File

@ -119,7 +119,7 @@ public class Token<T extends TokenIdentifier> implements Writable {
* Get the token kind
* @return the kind of the token
*/
public Text getKind() {
public synchronized Text getKind() {
return kind;
}