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 2015/03/06 11:06:31 UTC

wicket git commit: WICKET-5850 Fix formatting

Repository: wicket
Updated Branches:
  refs/heads/wicket-6.x c0f187b57 -> eafffd7d3


WICKET-5850 Fix formatting


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

Branch: refs/heads/wicket-6.x
Commit: eafffd7d393e194881662b0faf3368e045c3e27c
Parents: c0f187b
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Fri Mar 6 12:06:08 2015 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Fri Mar 6 12:06:08 2015 +0200

----------------------------------------------------------------------
 .../main/java/org/apache/wicket/proxy/LazyInitProxyFactory.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/eafffd7d/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 3df433b..b9ec468 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
@@ -160,7 +160,7 @@ public class LazyInitProxyFactory
 			CGLibInterceptor handler = new CGLibInterceptor(type, locator);
 
 			Enhancer e = new Enhancer();
-            e.setClassLoader(resolveClassLoader());
+			e.setClassLoader(resolveClassLoader());
 			e.setInterfaces(new Class[] { Serializable.class, ILazyInitProxy.class,
 					IWriteReplace.class });
 			e.setSuperclass(type);