use of org.hotswap.agent.javassist.bytecode.AttributeInfo in project HotswapAgent by HotswapProjects.
the class FieldInitLink method setAttribute.
public void setAttribute(String name, byte[] data) {
checkModify();
ClassFile cf = getClassFile2();
cf.addAttribute(new AttributeInfo(cf.getConstPool(), name, data));
}
Aggregations