Skip to content

Commit 41ce516

Browse files
committed
Made the annotations source only
1 parent 9e6ec04 commit 41ce516

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

src/mhahnFr/NDL/PublicApi.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,8 @@
2121

2222
package mhahnFr.NDL;
2323

24+
import java.lang.annotation.Retention;
25+
import java.lang.annotation.RetentionPolicy;
26+
27+
@Retention(RetentionPolicy.SOURCE)
2428
public @interface PublicApi {}

src/mhahnFr/NDL/impl/PrivateApi.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,8 @@
2121

2222
package mhahnFr.NDL.impl;
2323

24+
import java.lang.annotation.Retention;
25+
import java.lang.annotation.RetentionPolicy;
26+
27+
@Retention(RetentionPolicy.SOURCE)
2428
public @interface PrivateApi {}

0 commit comments

Comments
 (0)