You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by eh...@apache.org on 2007/06/19 22:44:39 UTC

svn commit: r548850 - /incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/RequestCycle.java

Author: ehillenius
Date: Tue Jun 19 13:44:38 2007
New Revision: 548850

URL: http://svn.apache.org/viewvc?view=rev&rev=548850
Log:
set max steps to 100 now. You definitively have a problem if you ever reach that.

Modified:
    incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/RequestCycle.java

Modified: incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/RequestCycle.java
URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/RequestCycle.java?view=diff&rev=548850&r1=548849&r2=548850
==============================================================================
--- incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/RequestCycle.java (original)
+++ incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/RequestCycle.java Tue Jun 19 13:44:38 2007
@@ -1155,7 +1155,7 @@
 			IRequestCycleProcessor processor = safeGetRequestProcessor();
 
 			// Arbitrary maximum number of steps
-			final int maxSteps = Short.MAX_VALUE;
+			final int maxSteps = 100;
 
 			// Loop through steps
 			for (int totalSteps = 0; currentStep < DONE; totalSteps++)