Merge "Report final progress when finished copying." into pi-dev

am: 01f2ff1aa4

Change-Id: I1421da9d91c172fb9afff1e5960a9c86ff2d794d
This commit is contained in:
Jeff Sharkey
2018-03-27 03:45:07 +00:00
committed by android-build-merger

View File

@@ -411,6 +411,9 @@ public class FileUtils {
checkpoint = 0;
}
}
if (listener != null) {
listener.onProgress(progress);
}
return progress;
}
@@ -440,6 +443,9 @@ public class FileUtils {
checkpoint = 0;
}
}
if (listener != null) {
listener.onProgress(progress);
}
return progress;
}
@@ -479,6 +485,9 @@ public class FileUtils {
checkpoint = 0;
}
}
if (listener != null) {
listener.onProgress(progress);
}
return progress;
}