Fix SuppressWarnings typo.

As Error Prone states:
Suppressing "deprecated" is probably a typo for "deprecation"
Bug: 27723540

(cherry picked from commit a7f834f1ce)

Change-Id: I0c6a9fc0a160769955cccf97ec7decb1f2b9b8fb
This commit is contained in:
Ian Rogers
2016-05-27 14:31:19 -07:00
committed by Paul Duffin
parent efb7bec56a
commit e09ac05b35

View File

@@ -307,7 +307,7 @@ public class PowerProfile {
private static final String POWER_CPU_CLUSTER_SPEED_PREFIX = "cpu.speeds.cluster";
private static final String POWER_CPU_CLUSTER_ACTIVE_PREFIX = "cpu.active.cluster";
@SuppressWarnings("deprecated")
@SuppressWarnings("deprecation")
private void initCpuClusters() {
// Figure out how many CPU clusters we're dealing with
final Object obj = sPowerMap.get(POWER_CPU_CLUSTER_CORE_COUNT);