You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by im...@apache.org on 2007/09/05 16:04:56 UTC

svn commit: r572954 - /myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf/OrchestraApplicationFactory.java

Author: imario
Date: Wed Sep  5 07:04:51 2007
New Revision: 572954

URL: http://svn.apache.org/viewvc?rev=572954&view=rev
Log:
keep target class on proxy

Modified:
    myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf/OrchestraApplicationFactory.java

Modified: myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf/OrchestraApplicationFactory.java
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf/OrchestraApplicationFactory.java?rev=572954&r1=572953&r2=572954&view=diff
==============================================================================
--- myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf/OrchestraApplicationFactory.java (original)
+++ myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf/OrchestraApplicationFactory.java Wed Sep  5 07:04:51 2007
@@ -51,7 +51,7 @@
 		Application application = original.getApplication();
 
 		ProxyFactory factory = new ProxyFactory(application);
-		// factory.setProxyTargetClass(true);
+		factory.setProxyTargetClass(true);
 		factory.addAdvice(new MethodInterceptor()
 		{
 			public Object invoke(MethodInvocation methodInvocation) throws Throwable