Skip to content

Commit

Permalink
Address code review comments
Browse files Browse the repository at this point in the history
Signed-off-by: Andriy Redko <andriy.redko@aiven.io>
  • Loading branch information
reta committed Aug 10, 2023
1 parent 71d10fe commit a54fda4
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*/
@Documented
@Target({ ElementType.TYPE, ElementType.PACKAGE, ElementType.METHOD, ElementType.CONSTRUCTOR })
@PublicApi
@PublicApi(since = "2.10.0")
public @interface DeprecatedApi {
/**
* Version since this API is deprecated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*/
@Documented
@Target({ ElementType.TYPE, ElementType.PACKAGE, ElementType.METHOD, ElementType.CONSTRUCTOR })
@PublicApi
@PublicApi(since = "2.10.0")
public @interface ExperimentalApi {

}
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*/
@Documented
@Target({ ElementType.TYPE, ElementType.PACKAGE, ElementType.METHOD, ElementType.CONSTRUCTOR })
@PublicApi
@PublicApi(since = "2.10.0")
public @interface InternalApi {

}
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
*/
@Documented
@Target({ ElementType.TYPE, ElementType.PACKAGE, ElementType.METHOD, ElementType.CONSTRUCTOR })
@PublicApi
@PublicApi(since = "2.10.0")
public @interface PublicApi {
/**
* Version when this API was released
*/
String since() default "";
String since();
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
*
* @opensearch.api
*/
@PublicApi
@PublicApi(since = "2.10.0")
package org.opensearch.common.annotation;

0 comments on commit a54fda4

Please sign in to comment.