Andrzej Bialecki wrote:
Not to mention that the code uses a local variable with the same name
and different type, to obscure the picture... I'll fix it. Thanks!
We were both too late... ;-)
r332371 | cutting | 2005-11-10
[EMAIL PROTECTED] wrote:
In method Generator.Selector.reduce small bug.
Now it:
...
while (values.hasNext() && ++count < limit) {
...
Must be:
...
while (values.hasNext() && ++count <= limit) {
...
Not to mention that the code uses a local variable with the same name
and different type