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 getAnnotation(Field field, Class cls) { return (T) field.getAnnotation(cls); } }