While porting our app to current head I noticed that one of our
developers discovered something he called a bug:

Iterator iterate(int first, int count) {
   return list.listIterator(first);
}

ignores the count parameter. It would be better/nicer to return:

list.sublist(first, count).iterator();

Now this will give different behavior to existing projects, so I
wanted to ask the list if there are any objections to changing this.

Martijn

--
Learn Wicket at ApacheCon Europe: http://apachecon.com
Join the wicket community at irc.freenode.net: ##wicket
Wicket 1.2.5 will keep your server alive. Download Wicket now!
http://wicketframework.org

Reply via email to