Skip to content

Commit 7b4e2c4

Browse files
committed
1 parent e700c9c commit 7b4e2c4

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/main/java/graphql/PublicApi.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package graphql;
22

3+
import java.lang.annotation.Documented;
34
import java.lang.annotation.Retention;
45
import java.lang.annotation.RetentionPolicy;
56
import java.lang.annotation.Target;
@@ -10,5 +11,6 @@
1011

1112
@Retention(RetentionPolicy.RUNTIME)
1213
@Target(value = {CONSTRUCTOR, METHOD, TYPE})
14+
@Documented
1315
public @interface PublicApi {
1416
}

src/main/java/graphql/PublicSpi.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package graphql;
22

3+
import java.lang.annotation.Documented;
34
import java.lang.annotation.Retention;
45
import java.lang.annotation.RetentionPolicy;
56
import java.lang.annotation.Target;
@@ -10,5 +11,6 @@
1011

1112
@Retention(RetentionPolicy.RUNTIME)
1213
@Target(value = {CONSTRUCTOR, METHOD, TYPE})
14+
@Documented
1315
public @interface PublicSpi {
1416
}

0 commit comments

Comments
 (0)