jimu-decompiled/sources/com/thoughtworks/xstream/annotations/AnnotationProvider.java
2025-05-13 19:24:51 +02:00

14 lines
345 B
Java

package com.thoughtworks.xstream.annotations;
import java.lang.annotation.Annotation;
import java.lang.reflect.Field;
@Deprecated
/* loaded from: classes.dex */
public class AnnotationProvider {
@Deprecated
public <T extends Annotation> T getAnnotation(Field field, Class<T> cls) {
return (T) field.getAnnotation(cls);
}
}