pick 97420a31d The big reformat of 2020
This commit is contained in:
@@ -18,21 +18,17 @@
|
||||
|
||||
package appeng.items.parts;
|
||||
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
|
||||
/**
|
||||
* This annotation is used to mark static fields or static methods that return/contain models used
|
||||
* for a part. They are automatically registered as part of the part item registration.
|
||||
* This annotation is used to mark static fields or static methods that
|
||||
* return/contain models used for a part. They are automatically registered as
|
||||
* part of the part item registration.
|
||||
*/
|
||||
@Retention( RetentionPolicy.RUNTIME )
|
||||
@Target( {
|
||||
ElementType.FIELD,
|
||||
ElementType.METHOD
|
||||
} )
|
||||
public @interface PartModels
|
||||
{}
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Target({ ElementType.FIELD, ElementType.METHOD })
|
||||
public @interface PartModels {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user