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:10:05 UTC

[3/3] git commit: WICKET-5052 @SpringBean fails to inject composite interfaces

Updated Branches:
  refs/heads/master c4c78ae41 -> 8d774aead


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/8d774aea
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/8d774aea
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/8d774aea

Branch: refs/heads/master
Commit: 8d774aead8626981c56fa957a0169f115ba9eb36
Parents: 172cd4d
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:08:10 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/8d774aea/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 2229e20..b4e821b 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
@@ -431,6 +431,7 @@ public class LazyInitProxyFactory
 			}
 			try
 			{
+				method.setAccessible(true);
 				return method.invoke(target, args);
 			}
 			catch (InvocationTargetException e)