All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.artemis.weaver.ProfileAnnotationRemoverWeaver Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
package com.artemis.weaver;


import org.objectweb.asm.AnnotationVisitor;
import org.objectweb.asm.ClassVisitor;
import org.objectweb.asm.Opcodes;

import com.artemis.Weaver;

class ProfileAnnotationRemoverWeaver extends ClassVisitor implements Opcodes {

	public ProfileAnnotationRemoverWeaver(ClassVisitor cv) {
		super(ASM4, cv);
	}
	
	@Override
	public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
		return (Weaver.PROFILER_ANNOTATION.equals(desc))
			? null
			: super.visitAnnotation(desc, visible);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy