mirror of
https://github.com/Eaglercraft-Archive/Eaglercraftx-1.8.8-src.git
synced 2025-06-28 02:48:14 -05:00
Update #47 - Singleplayer lag fixes
This commit is contained in:
37
sources/main/java/com/carrotsearch/hppc/Generated.java
Normal file
37
sources/main/java/com/carrotsearch/hppc/Generated.java
Normal file
@ -0,0 +1,37 @@
|
||||
/*
|
||||
* HPPC
|
||||
*
|
||||
* Copyright (C) 2010-2024 Carrot Search s.c. and contributors
|
||||
* All rights reserved.
|
||||
*
|
||||
* Refer to the full license file "LICENSE.txt":
|
||||
* https://github.com/carrotsearch/hppc/blob/master/LICENSE.txt
|
||||
*/
|
||||
package com.carrotsearch.hppc;
|
||||
|
||||
import static java.lang.annotation.ElementType.*;
|
||||
import static java.lang.annotation.RetentionPolicy.*;
|
||||
|
||||
import java.lang.annotation.Documented;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Documented
|
||||
@Retention(SOURCE)
|
||||
@Target({PACKAGE, TYPE, ANNOTATION_TYPE, METHOD, CONSTRUCTOR, FIELD, LOCAL_VARIABLE, PARAMETER})
|
||||
public @interface Generated {
|
||||
/**
|
||||
* The value element MUST have the name of the code generator. The recommended convention is to
|
||||
* use the fully qualified name of the code generator. For example: com.acme.generator.CodeGen.
|
||||
*/
|
||||
String[] value();
|
||||
|
||||
/** Date when the source was generated. */
|
||||
String date() default "";
|
||||
|
||||
/**
|
||||
* A place holder for any comments that the code generator may want to include in the generated
|
||||
* code.
|
||||
*/
|
||||
String comments() default "";
|
||||
}
|
Reference in New Issue
Block a user