Skip to content

Commit

Permalink
Make RangeClass package-private (#564 / #598)
Browse files Browse the repository at this point in the history
The `RangeClass` annotation is only used internally, as a
meta-annotation. It references the internal class `Range`.

Closes: #564
PR: #598
  • Loading branch information
Michael1993 committed Feb 22, 2022
1 parent dbd8cc2 commit 38603a9
Showing 1 changed file with 1 addition and 3 deletions.
Expand Up @@ -10,7 +10,6 @@

package org.junitpioneer.jupiter.params;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
Expand All @@ -23,8 +22,7 @@
*/
@Target(ElementType.ANNOTATION_TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface RangeClass {
@interface RangeClass {

Class<? extends Range> value();

Expand Down

0 comments on commit 38603a9

Please sign in to comment.