You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by th...@apache.org on 2014/01/09 18:30:33 UTC

git commit: TAP5-2235: JCache integration.

Updated Branches:
  refs/heads/master 77072b3ab -> 10425b8ee


TAP5-2235: JCache integration.

Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/10425b8e
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/10425b8e
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/10425b8e

Branch: refs/heads/master
Commit: 10425b8ee0f086d5c1e85d1bdd3ba22ad736aa17
Parents: 77072b3
Author: Thiago H. de Paula Figueiredo <th...@apache.org>
Authored: Thu Jan 9 15:30:13 2014 -0200
Committer: Thiago H. de Paula Figueiredo <th...@apache.org>
Committed: Thu Jan 9 15:30:13 2014 -0200

----------------------------------------------------------------------
 .../tapestry5/ioc/internal/services/PlasticProxyFactoryImpl.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/10425b8e/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/PlasticProxyFactoryImpl.java
----------------------------------------------------------------------
diff --git a/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/PlasticProxyFactoryImpl.java b/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/PlasticProxyFactoryImpl.java
index 9c31858..a18bfba 100644
--- a/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/PlasticProxyFactoryImpl.java
+++ b/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/PlasticProxyFactoryImpl.java
@@ -34,7 +34,7 @@ import java.util.Map;
 
 public class PlasticProxyFactoryImpl implements PlasticProxyFactory
 {
-    public static final String INTERNAL_GET_DELEGATE = null;
+    public static final String INTERNAL_GET_DELEGATE = "_____internalGetDelegate_DONT_CALL_THIS_METHOD_____";
 
     private final PlasticManager manager;
 
@@ -124,7 +124,7 @@ public class PlasticProxyFactoryImpl implements PlasticProxyFactory
                 
                 // TA5-2235
                 MethodDescription getDelegateMethodDescription = 
-                        new MethodDescription(implementationType.getName(), INTERNAL_GET_DELEGATE);
+                        new MethodDescription(interfaceType.getName(), INTERNAL_GET_DELEGATE);
                 plasticClass.introduceMethod(getDelegateMethodDescription, returnCreateObject);
                 
                 plasticClass.addToString(description);