Browse Source

去掉对 returnValue 的 null 值初始化操作

James 8 years ago
parent
commit
2d2ec8c847
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/java/com/jfinal/aop/Invocation.java

+ 1 - 1
src/main/java/com/jfinal/aop/Invocation.java

@@ -37,7 +37,7 @@ public class Invocation {
 	private Object[] args;
 	private MethodProxy methodProxy;
 	private Interceptor[] inters;
-	private Object returnValue = null;
+	private Object returnValue;
 	
 	private int index = 0;