Merge pull request #76 from Artelys/master

bugfix for ProgressAggregator
This commit is contained in:
Michael Bayne
2016-12-22 08:13:30 -08:00
committed by GitHub
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -1 +1,2 @@
/target/
*.iml
@@ -20,7 +20,7 @@ public class ProgressAggregator
public ProgressObserver startElement (final int index) {
return new ProgressObserver() {
public void progress (int percent) {
_sizes[index] = percent;
_progress[index] = percent;
updateAggProgress();
}
};