Rename LatencyTracker config flags to follow the convention

Test: manual
Bug: 161781469
Change-Id: I77bd4d958ae50243ae16a7cb7f28bdca8e1e3cfc
This commit is contained in:
Marcin Oczeretko
2021-02-23 14:10:48 +00:00
parent f9a0ccc0e7
commit 40a873f866

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);
}
}
}