@@ 345,8 345,7 @@ public class AnnotationAssetManager exte
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD, ElementType.METHOD})
public @interface Asset {
-
- /** @return Whether this field or method should be loaded by {@link AnnotationAssetManager#load(Class, Object)}. Default is @{@code true}. */
+ /** @return Whether this field or method should be loaded by {@link AnnotationAssetManager#load(Class, Object)}. Default is {@code true}. */
boolean load() default true;
/** @return the type of the asset this field or method represents */
@@ 357,7 356,5 @@ public class AnnotationAssetManager exte
* @return The fully qualified or simple name of a field or method providing AssetLoaderParameters.
* If the name is simple, the declaring class of this field or method is assumed to be the declaring class of the AssetLoaderParameters field or method as well. */
String params() default "";
-
}
-
}