Browse Source

jfnial 4.0 release

James 6 years ago
parent
commit
3953005ab9
1 changed files with 0 additions and 8 deletions
  1. 0 8
      src/main/java/com/jfinal/aop/Invocation.java

+ 0 - 8
src/main/java/com/jfinal/aop/Invocation.java

@@ -42,10 +42,6 @@ public class Invocation {
 	
 	private int index = 0;
 	
-	
-	// ----------------------------------------------------------------
-	
-	
 	public Invocation(Object target, Long proxyMethodKey, Callback callback, Object... args) {
 		this.action = null;
 		this.target = target;
@@ -58,14 +54,10 @@ public class Invocation {
 		this.args = args;
 	}
 	
-	
 	public Invocation(Object target, Long proxyMethodKey, Callback callback) {
 		this(target, proxyMethodKey, callback, NULL_ARGS);
 	}
 	
-	// ----------------------------------------------------------------
-	
-	
 	// InvocationWrapper need this constructor
 	protected Invocation() {
 		this.action = null;