[jboss-cvs] JBossAS SVN: r59691 - branches/Branch_AOP_1_5/aop/src/main/org/jboss/aop/joinpoint.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Jan 17 10:50:12 EST 2007


Author: flavia.rainone at jboss.com
Date: 2007-01-17 10:50:12 -0500 (Wed, 17 Jan 2007)
New Revision: 59691

Modified:
   branches/Branch_AOP_1_5/aop/src/main/org/jboss/aop/joinpoint/CallerInvocation.java
Log:
[JBAOP-336] Syntax error, calling super class constructor after setting callingObject value

Modified: branches/Branch_AOP_1_5/aop/src/main/org/jboss/aop/joinpoint/CallerInvocation.java
===================================================================
--- branches/Branch_AOP_1_5/aop/src/main/org/jboss/aop/joinpoint/CallerInvocation.java	2007-01-17 15:47:06 UTC (rev 59690)
+++ branches/Branch_AOP_1_5/aop/src/main/org/jboss/aop/joinpoint/CallerInvocation.java	2007-01-17 15:50:12 UTC (rev 59691)
@@ -44,8 +44,8 @@
 
    public CallerInvocation(Object callingObject, Interceptor[] interceptors)
    {
+      super(interceptors);
       this.callingObject = callingObject;
-      super(interceptors);
    }
    
    /**
@@ -57,4 +57,4 @@
    {
 	   return this.callingObject;
    }
-}
+}
\ No newline at end of file




More information about the jboss-cvs-commits mailing list