Fix bug where checking-in more than once would cause an infinite loop in UsageStatsService

- Forgot to increment loop variable :S

Bug:18239732
Change-Id: Ie37a83584d7849108dbfd3bd4cbb595520d488b1
This commit is contained in:
Adam Lesinski
2014-11-04 13:38:46 -08:00
parent 085329b69a
commit 32e580604d

View File

@@ -119,6 +119,7 @@ class UsageStatsDatabase {
if (!files.valueAt(start).getBaseFile().getName().endsWith("-c")) {
break;
}
start++;
}
if (start == fileCount - 1) {