Merge "Rename LatencyTracker config flags to follow the convention" into sc-dev

This commit is contained in:
Marcin Oczeretko
2021-03-11 12:59:46 +00:00
committed by Android (Google) Code Review

View File

@@ -175,7 +175,7 @@ public class LatencyTracker {
mEnabled = properties.getBoolean(SETTINGS_ENABLED_KEY, DEFAULT_ENABLED);
for (int action : ACTIONS_ALL) {
mTraceThresholdPerAction[action] =
properties.getInt(getTraceTriggerNameForAction(action), -1);
properties.getInt(getNameOfAction(STATSD_ACTION[action]), -1);
}
}
}