Skip to content

Commit

Permalink
Update targets
Browse files Browse the repository at this point in the history
  • Loading branch information
HardNorth committed Feb 14, 2024
1 parent b073d5e commit ffb416a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* This annotation should be handled in priority to other mechanisms of existing test frameworks.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.TYPE })
@Target({ ElementType.METHOD, ElementType.TYPE })
public @interface Description {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* This annotation should be handled in priority to other mechanisms of existing test frameworks.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.TYPE })
@Target({ ElementType.METHOD, ElementType.TYPE })
public @interface DisplayName {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
@Documented
@Inherited
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.TYPE })
@Target({ ElementType.METHOD, ElementType.TYPE })
@Repeatable(TmsLinks.class)
public @interface TmsLink {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
@Documented
@Inherited
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.TYPE })
@Target({ ElementType.METHOD, ElementType.TYPE })
public @interface TmsLinks {
TmsLink[] value();
}

0 comments on commit ffb416a

Please sign in to comment.