Skip to content

Commit

Permalink
fix for bug: 3209
Browse files Browse the repository at this point in the history
  • Loading branch information
jonalv committed Jun 5, 2012
1 parent f119da6 commit 7ad6787
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -338,6 +338,7 @@ public boolean hasNext() {
}

public ICDKMolecule next() {
++pos;
if ( pos % (size/100.0) == 0 ) {
synchronized ( monitor ) {
if (monitor.isCanceled()) {
Expand All @@ -348,7 +349,7 @@ public ICDKMolecule next() {
+TimeCalculator.generateTimeRemainEst(
before, pos, size ) + ")" );
}
return getMoleculeAt( ++pos );
return getMoleculeAt( pos );
}

public void remove() {
Expand Down

0 comments on commit 7ad6787

Please sign in to comment.