Fix @SuppressWarnings('deprecation') typo.

http://errorprone.info/bugpattern/SuppressWarningsDeprecated

This typo throws a build error on oc-mr1-dev.

Bug: 64937210
Change-Id: I4c48a22c5ac0f296053753d4058385581037ab06
This commit is contained in:
Jon Miranda
2017-08-29 11:06:30 -07:00
parent ff58fe239a
commit 7927b03287
@@ -130,7 +130,7 @@ public class IconShapeOverride {
private final int mOverrideId;
private final String mOverrideValue;
@SuppressWarnings("deprecated")
@SuppressWarnings("deprecation")
public ResourcesOverride(Resources parent, int overrideId, String overrideValue) {
super(parent.getAssets(), parent.getDisplayMetrics(), parent.getConfiguration());
mOverrideId = overrideId;