Skip to content

Commit

Permalink
ArC: add missing info to some @deprecated annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
Ladicek committed Feb 28, 2023
1 parent 8dfa2e5 commit 8c7c1ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ default T create(SyntheticCreationalContext<T> context) {
* @return the contextual instance
* @deprecated Use {@link #create(SyntheticCreationalContext)} instead
*/
@Deprecated(forRemoval = true)
@Deprecated(forRemoval = true, since = "3.0")
default T create(CreationalContext<T> creationalContext, Map<String, Object> params) {
throw new CreationException("Creation logic not implemented");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* @deprecated use {@link jakarta.annotation.Priority}; this annotation will be removed at some time after Quarkus 3.6
*/
@Retention(RetentionPolicy.RUNTIME)
@Deprecated
@Deprecated(forRemoval = true, since = "3.0")
public @interface Priority {

int value();
Expand Down

0 comments on commit 8c7c1ce

Please sign in to comment.