generated from FabricMC/fabric-example-mod
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Polyana
committed
Nov 27, 2023
1 parent
69db983
commit 422fd76
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
api/src/main/kotlin/br/com/gamemods/minecity/api/annotation/UsedByReflection.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package br.com.gamemods.minecity.api.annotation | ||
|
||
/** | ||
* Indicates that something that may be marked as unused by IDE is actually used by reflection, | ||
* so you can suppress unused warnings annotated by [UsedByReflection] safely. | ||
*/ | ||
@Retention(value = AnnotationRetention.BINARY) | ||
@Target(AnnotationTarget.CLASS, AnnotationTarget.FUNCTION, AnnotationTarget.TYPEALIAS, AnnotationTarget.PROPERTY, | ||
AnnotationTarget.PROPERTY_SETTER, AnnotationTarget.CONSTRUCTOR | ||
) | ||
public annotation class UsedByReflection( | ||
val value: String = "" | ||
) |