Skip to content

Commit

Permalink
refactor: deprecate Base and Core extension annotations (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
ndr-brt authored Nov 4, 2024
1 parent 1927bc6 commit 89e2528
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,12 @@

/**
* Indicates that an extension belongs to the runtime core and should always be loaded first.
*
* @deprecated this annotation is not used anymore and can be removed
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Documented
@Deprecated(since = "0.11.0")
public @interface BaseExtension {
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,13 @@
/**
* Indicates that an extension pertains to the core:transfer module, which will cause it to receive special treatment
* upon extension loading.
*
* @deprecated this annotation is not used anymore and can be removed
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Documented
@Deprecated(since = "0.11.0")
public @interface CoreExtension {

}

0 comments on commit 89e2528

Please sign in to comment.