You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by kn...@apache.org on 2007/05/18 00:41:04 UTC

svn commit: r539149 - /incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/FilePageStore.java

Author: knopp
Date: Thu May 17 15:41:02 2007
New Revision: 539149

URL: http://svn.apache.org/viewvc?view=rev&rev=539149
Log:
Added missing return

Modified:
    incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/FilePageStore.java

Modified: incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/FilePageStore.java
URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/FilePageStore.java?view=diff&rev=539149&r1=539148&r2=539149
==============================================================================
--- incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/FilePageStore.java (original)
+++ incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/FilePageStore.java Thu May 17 15:41:02 2007
@@ -826,6 +826,7 @@
 			{
 				stream.writeBoolean(false);
 				stream.defaultWriteObject();
+				return;
 			}
 			SessionPageKey spk = new SessionPageKey(current.sessionId,page);
 			if (!completed.contains(spk) && !previous.contains(spk))