You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by sy...@apache.org on 2017/01/04 07:39:49 UTC

[47/50] [abbrv] hbase git commit: HBASE-17401 Removed unnecessary semicolons in hbase-annotations

HBASE-17401 Removed unnecessary semicolons in hbase-annotations

Signed-off-by: Michael Stack <st...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/c3d5f268
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/c3d5f268
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/c3d5f268

Branch: refs/heads/hbase-12439
Commit: c3d5f268cfb3220808b3aad04e26da8f1339aa75
Parents: 0a93241
Author: Jan Hentschel <ja...@ultratendency.com>
Authored: Sun Jan 1 15:04:37 2017 +0100
Committer: Michael Stack <st...@apache.org>
Committed: Sun Jan 1 17:31:44 2017 -0800

----------------------------------------------------------------------
 .../apache/hadoop/hbase/classification/InterfaceAudience.java  | 6 +++---
 .../apache/hadoop/hbase/classification/InterfaceStability.java | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/c3d5f268/hbase-annotations/src/main/java/org/apache/hadoop/hbase/classification/InterfaceAudience.java
----------------------------------------------------------------------
diff --git a/hbase-annotations/src/main/java/org/apache/hadoop/hbase/classification/InterfaceAudience.java b/hbase-annotations/src/main/java/org/apache/hadoop/hbase/classification/InterfaceAudience.java
index 6e67758..506ef56 100644
--- a/hbase-annotations/src/main/java/org/apache/hadoop/hbase/classification/InterfaceAudience.java
+++ b/hbase-annotations/src/main/java/org/apache/hadoop/hbase/classification/InterfaceAudience.java
@@ -50,7 +50,7 @@ public final class InterfaceAudience {
    */
   @Documented
   @Retention(RetentionPolicy.RUNTIME)
-  public @interface Public {};
+  public @interface Public {}
 
   /**
    * Intended only for the project(s) specified in the annotation.
@@ -60,14 +60,14 @@ public final class InterfaceAudience {
   @Retention(RetentionPolicy.RUNTIME)
   public @interface LimitedPrivate {
     String[] value();
-  };
+  }
 
   /**
    * Intended for use only within Hadoop itself.
    */
   @Documented
   @Retention(RetentionPolicy.RUNTIME)
-  public @interface Private {};
+  public @interface Private {}
 
   private InterfaceAudience() {} // Audience can't exist on its own
 }

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3d5f268/hbase-annotations/src/main/java/org/apache/hadoop/hbase/classification/InterfaceStability.java
----------------------------------------------------------------------
diff --git a/hbase-annotations/src/main/java/org/apache/hadoop/hbase/classification/InterfaceStability.java b/hbase-annotations/src/main/java/org/apache/hadoop/hbase/classification/InterfaceStability.java
index 338b375..ac20f3a 100644
--- a/hbase-annotations/src/main/java/org/apache/hadoop/hbase/classification/InterfaceStability.java
+++ b/hbase-annotations/src/main/java/org/apache/hadoop/hbase/classification/InterfaceStability.java
@@ -47,14 +47,14 @@ public class InterfaceStability {
    */
   @Documented
   @Retention(RetentionPolicy.RUNTIME)
-  public @interface Stable {};
+  public @interface Stable {}
 
   /**
    * Evolving, but can break compatibility at minor release (i.e. m.x)
    */
   @Documented
   @Retention(RetentionPolicy.RUNTIME)
-  public @interface Evolving {};
+  public @interface Evolving {}
 
   /**
    * No guarantee is provided as to reliability or stability across any
@@ -62,5 +62,5 @@ public class InterfaceStability {
    */
   @Documented
   @Retention(RetentionPolicy.RUNTIME)
-  public @interface Unstable {};
+  public @interface Unstable {}
 }