mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-13 04:36:44 +00:00
12 lines
No EOL
209 B
Java
12 lines
No EOL
209 B
Java
package com.earth2me.essentials.storage;
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
|
|
@Target(ElementType.FIELD)
|
|
@Documented
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
public @interface Comment
|
|
{
|
|
String[] value() default "";
|
|
} |