Merge "Fix data race in MultiProgressMonitor"

This commit is contained in:
Saša Živkov
2016-11-10 14:50:05 +00:00
committed by Gerrit Code Review

View File

@@ -319,7 +319,7 @@ public class MultiProgressMonitor {
if (!tasks.isEmpty()) {
boolean first = true;
for (Task t : tasks) {
int count = t.count;
int count = t.getCount();
if (count == 0) {
continue;
}