Skip to content

Commit

Permalink
* RemoveUntilVersion: can now be used not only for methods
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolfgang-check24 committed Jul 4, 2018
1 parent bf6642a commit 0a6538f
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@
/*
* Created by wolfgangreithmeier on 17.04.17.
*/
@Target({ElementType.METHOD})
@Target({
ElementType.FIELD,
ElementType.LOCAL_VARIABLE,
ElementType.METHOD,
ElementType.PARAMETER,
ElementType.TYPE})
@Retention(RetentionPolicy.SOURCE)
public @interface RemovedUntilVersion {
String value();
Expand Down

0 comments on commit 0a6538f

Please sign in to comment.