Addendum of HDFS-8135.

This commit is contained in:
Haohui Mai 2015-05-27 13:14:51 -07:00
parent cc348fead7
commit 3f321be24d
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ import org.apache.hadoop.fs.Path;
import org.apache.hadoop.util.StringUtils;
@InterfaceAudience.Private
public final class HdfsConstants {
public class HdfsConstants {
// Long that indicates "leave current quota unchanged"
public static final long QUOTA_DONT_SET = Long.MAX_VALUE;
public static final long QUOTA_RESET = -1L;

View File

@ -23,5 +23,5 @@ package org.apache.hadoop.hdfs.protocol;
* it for SafemodeAction and DatanodeReport types.
*/
@Deprecated
public abstract class FSConstants extends HdfsConstants {
public final class FSConstants extends HdfsConstants {
}