Skip to content

Commit ac88317

Browse files
committed
1、优化
1 parent 352a34b commit ac88317

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

android-aop-annotation/src/main/java/com/flyjingfish/android_aop_annotation/AndroidAopJoinPoint.java

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -64,27 +64,11 @@ public void setTarget(Object target) {
6464
this.mTarget = target;
6565
}
6666

67-
// public AndroidAopJoinPoint(Class<?> clazz, Object target, String originalMethodName, String targetMethodName,boolean lambda) {
68-
// this.targetClassName = clazz.getName();
69-
// this.target = target;
70-
// this.originalMethodName = originalMethodName;
71-
// this.targetMethodName = targetMethodName;
72-
// this.targetClass = clazz;
73-
// this.lambda = lambda;
74-
//
75-
// }
76-
//
77-
// public AndroidAopJoinPoint(Class<?> clazz, Object target, String originalMethodName, String targetMethodName) {
78-
// this(clazz,target,originalMethodName,targetMethodName,false);
79-
// }
8067

8168
public boolean isInit() {
8269
return init;
8370
}
8471

85-
// public void setCutMatchClassName(String cutMatchClassName) {
86-
// this.cutMatchClassName = cutMatchClassName;
87-
// }
8872
public void setCutMatchClassNames(String[] cutMatchClassNames) {
8973
this.cutMatchClassNames = cutMatchClassNames;
9074
}

0 commit comments

Comments
 (0)