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 2012/10/15 13:15:37 UTC

[2/2] git commit: WICKET-4812 Fix Clirr warning

WICKET-4812 Fix Clirr warning


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

Branch: refs/heads/master
Commit: 752f5ba7f68068ca56c0c3325f19c9ae595cdd4a
Parents: 89ba721
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Mon Oct 15 13:13:21 2012 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Mon Oct 15 13:13:21 2012 +0200

----------------------------------------------------------------------
 .../wicket/core/util/io/SerializableChecker.java   |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/752f5ba7/wicket-core/src/main/java/org/apache/wicket/core/util/io/SerializableChecker.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/core/util/io/SerializableChecker.java b/wicket-core/src/main/java/org/apache/wicket/core/util/io/SerializableChecker.java
index c650e83..7b43caf 100644
--- a/wicket-core/src/main/java/org/apache/wicket/core/util/io/SerializableChecker.java
+++ b/wicket-core/src/main/java/org/apache/wicket/core/util/io/SerializableChecker.java
@@ -21,6 +21,7 @@ import java.io.NotSerializableException;
 import java.io.Serializable;
 import java.lang.reflect.Proxy;
 
+import org.apache.wicket.WicketRuntimeException;
 import org.apache.wicket.core.util.objects.checker.AbstractObjectChecker;
 import org.apache.wicket.core.util.objects.checker.ObjectChecker;
 
@@ -42,7 +43,7 @@ public class SerializableChecker extends ObjectChecker
 	 * @deprecated ObjectCheckException is thrown instead
 	 */
 	@Deprecated
-	public static final class WicketNotSerializableException extends ObjectCheckException
+	public static final class WicketNotSerializableException extends WicketRuntimeException
 	{
 		private static final long serialVersionUID = 1L;