use of com.taobao.android.dex.Annotation in project atlas by alibaba.
the class IndexMap method adjust.
public Annotation adjust(Annotation annotation) {
ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(32);
new EncodedValueTransformer(out).transformAnnotation(annotation.getReader());
return new Annotation(target, annotation.getVisibility(), new EncodedValue(out.toByteArray()));
}
Aggregations