com.flyjingfish.android_aop_plugin.scanner_visitor.RemoveAnnotation.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-aop-plugin Show documentation
Show all versions of android-aop-plugin Show documentation
Lightweight Aop for Android platform, you deserve it, action is worse than your heartbeat
package com.flyjingfish.android_aop_plugin.scanner_visitor
import org.objectweb.asm.AnnotationVisitor
import org.objectweb.asm.MethodVisitor
class RemoveAnnotation(
methodVisitor: MethodVisitor?,
className: String,
methodDescriptor: String,
onResultListener : OnResultListener
) :
SearchSuspendClass(methodVisitor,className,methodDescriptor,onResultListener) {
override fun visitAnnotation(descriptor: String?, visible: Boolean): AnnotationVisitor? {
return null
}
}