Merge "[SettingsProvider] fix timestamp format in dump" into tm-dev

This commit is contained in:
Songchun Fan
2022-03-22 15:58:05 +00:00
committed by Android (Google) Code Review

View File

@@ -618,7 +618,7 @@ final class SettingsState {
return;
}
HistoricalOperation operation = new HistoricalOperation(
SystemClock.elapsedRealtime(), type,
System.currentTimeMillis(), type,
setting != null ? new Setting(setting) : null);
if (mNextHistoricalOpIdx >= mHistoricalOperations.size()) {
mHistoricalOperations.add(operation);