You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2013/02/27 09:11:59 UTC

git commit: WICKET-5052 @SpringBean fails to inject composite interfaces

Updated Branches:
  refs/heads/wicket-1.5.x eec2b2132 -> 24a26b24e


WICKET-5052 @SpringBean fails to inject composite interfaces


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/24a26b24
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/24a26b24
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/24a26b24

Branch: refs/heads/wicket-1.5.x
Commit: 24a26b24e223245d01a8d77c0d88920f285037cd
Parents: eec2b21
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Wed Feb 27 10:08:10 2013 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Wed Feb 27 10:11:35 2013 +0200

----------------------------------------------------------------------
 .../apache/wicket/proxy/LazyInitProxyFactory.java  |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/24a26b24/wicket-ioc/src/main/java/org/apache/wicket/proxy/LazyInitProxyFactory.java
----------------------------------------------------------------------
diff --git a/wicket-ioc/src/main/java/org/apache/wicket/proxy/LazyInitProxyFactory.java b/wicket-ioc/src/main/java/org/apache/wicket/proxy/LazyInitProxyFactory.java
index f302943..6611edb 100644
--- a/wicket-ioc/src/main/java/org/apache/wicket/proxy/LazyInitProxyFactory.java
+++ b/wicket-ioc/src/main/java/org/apache/wicket/proxy/LazyInitProxyFactory.java
@@ -428,6 +428,7 @@ public class LazyInitProxyFactory
 			}
 			try
 			{
+				method.setAccessible(true);
 				return method.invoke(target, args);
 			}
 			catch (InvocationTargetException e)