HBASE-17401 Removed unnecessary semicolons in hbase-annotations
Signed-off-by: Michael Stack <stack@apache.org>
This commit is contained in:
parent
0a93241b61
commit
c3d5f268cf
|
@ -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
|
||||
}
|
||||
|
|
|
@ -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 {}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue