Skip to content

Commit

Permalink
fix: asm 辅助对象重构
Browse files Browse the repository at this point in the history
  • Loading branch information
limaofeng committed Oct 11, 2022
1 parent 9c92539 commit 962c94a
Showing 1 changed file with 1 addition and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,9 @@
@Getter
@AllArgsConstructor
public class MethodInfo {

private String methodName;

@Builder.Default private int symbolTable = ACC_PUBLIC;
private String methodDescriptor;
private String signature;
MethodCreator methodCreator;

public MethodInfo(
String methodName, String methodDescriptor, String signature, MethodCreator methodCreator) {
this.methodName = methodName;
this.methodDescriptor = methodDescriptor;
this.signature = signature;
this.methodCreator = methodCreator;
}
private MethodCreator methodCreator;
}

0 comments on commit 962c94a

Please sign in to comment.