浏览代码

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

James 8 年之前
父节点
当前提交
2d2ec8c847
共有 1 个文件被更改,包括 1 次插入1 次删除
  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;