HADOOP-9563. Fix incompatibility introduced by HADOOP-9523. Contributed by Tian Hong Wang.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1482709 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Suresh Srinivas 2013-05-15 07:42:06 +00:00
parent f7af4a014c
commit c9ace69cff
2 changed files with 5 additions and 3 deletions

View File

@ -723,6 +723,9 @@ Release 2.0.5-beta - UNRELEASED
HADOOP-9220. Unnecessary transition to standby in ActiveStandbyElector.
(tom and todd via todd)
HADOOP-9563. Fix incompatibility introduced by HADOOP-9523.
(Tian Hong Wang via suresh)
Release 2.0.4-alpha - 2013-04-25
INCOMPATIBLE CHANGES

View File

@ -25,7 +25,7 @@
* A helper class for getting build-info of the java-vm.
*
*/
@InterfaceAudience.Private
@InterfaceAudience.LimitedPrivate({"HBase"})
@InterfaceStability.Unstable
public class PlatformName {
/**
@ -49,7 +49,6 @@ public class PlatformName {
public static final boolean IBM_JAVA = JAVA_VENDOR_NAME.contains("IBM");
public static void main(String[] args) {
System.out.println("platform name: " + PLATFORM_NAME);
System.out.println("java vendor name: " + JAVA_VENDOR_NAME);
System.out.println(PLATFORM_NAME);
}
}