Author: ivaynberg
Date: Fri Feb 8 20:38:42 2008
New Revision: 620083
URL: http://svn.apache.org/viewvc?rev=620083&view=rev
Log:
cleanup
Modified:
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/repeater/RepeatingView.java
Modified:
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/repeater/RepeatingView.java
URL:
http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/repeater/RepeatingView.java?rev=620083&r1=620082&r2=620083&view=diff
==============================================================================
---
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/repeater/RepeatingView.java
(original)
+++
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/repeater/RepeatingView.java
Fri Feb 8 20:38:42 2008
@@ -100,15 +100,6 @@
public String newChildId()
{
childIdCounter++;
-
- if (childIdCounter == Long.MAX_VALUE)
- {
- // mmm yeah...like this will ever happen
- throw new RuntimeException("generateChildId() out of
space.");
- }
-
- // We prepend the id's with the text 'id' so they will generate
valid
- // markup id's if needed.
return String.valueOf(childIdCounter);
}