org.nd4j.bytebuddy.dup.DuplicateImplementation Maven / Gradle / Ivy
package org.nd4j.bytebuddy.dup;
import net.bytebuddy.dynamic.scaffold.InstrumentedType;
import net.bytebuddy.implementation.Implementation;
import net.bytebuddy.implementation.bytecode.ByteCodeAppender;
/**
* @author Adam Gibson
*/
public class DuplicateImplementation implements Implementation {
@Override
public InstrumentedType prepare(InstrumentedType instrumentedType) {
return instrumentedType;
}
@Override
public ByteCodeAppender appender(Target implementationTarget) {
return new Duplicate();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy