[Nutch-dev] Re: Small bug in Generator

2005-11-23 Thread Andrzej Bialecki
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

[Nutch-dev] Re: Small bug in Generator

2005-11-23 Thread Andrzej Bialecki
[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