Repository: hbase Updated Branches: refs/heads/master a4afa38f7 -> fcdf96a0e
HBASE-18958 Removed the IS annotation from SpaceLimitingException Signed-off-by: Michael Stack <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/fcdf96a0 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/fcdf96a0 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/fcdf96a0 Branch: refs/heads/master Commit: fcdf96a0e875019b0b3ca99eb378908d7ebcb98d Parents: a4afa38 Author: Jan Hentschel <[email protected]> Authored: Sun Oct 8 19:21:20 2017 +0200 Committer: Michael Stack <[email protected]> Committed: Sun Oct 8 17:15:24 2017 -0700 ---------------------------------------------------------------------- .../org/apache/hadoop/hbase/quotas/SpaceLimitingException.java | 2 -- 1 file changed, 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/fcdf96a0/hbase-server/src/main/java/org/apache/hadoop/hbase/quotas/SpaceLimitingException.java ---------------------------------------------------------------------- diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/quotas/SpaceLimitingException.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/quotas/SpaceLimitingException.java index 6bbeb3a..bdacd33 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/quotas/SpaceLimitingException.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/quotas/SpaceLimitingException.java @@ -20,13 +20,11 @@ package org.apache.hadoop.hbase.quotas; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.apache.yetus.audience.InterfaceAudience; -import org.apache.yetus.audience.InterfaceStability; /** * An Exception that is thrown when a space quota is in violation. */ @InterfaceAudience.Public [email protected] public class SpaceLimitingException extends QuotaExceededException { private static final long serialVersionUID = 2319438922387583600L; private static final Log LOG = LogFactory.getLog(SpaceLimitingException.class);
