cmsdk: Fix redundant case in themes contract's componentToImageColName.

TICKET: CYNGNOS-3015
Change-Id: I1daf7cf7b5b2119ab34e69b339644a1fb3da16dc
This commit is contained in:
Adnan Begovic 2016-06-06 10:38:58 -07:00
parent 39f001274e
commit fb0c0371d4
1 changed files with 2 additions and 2 deletions

View File

@ -385,9 +385,9 @@ public class ThemesContract {
throw new IllegalArgumentException("Ringtone mixnmatch component does not have a related column");
} else if (component.equals(MixnMatchColumns.KEY_OVERLAYS)) {
return ThemesColumns.OVERLAYS_URI;
} else if (component.equals(MixnMatchColumns.KEY_STATUS_BAR)) {
} else if (component.equals(MixnMatchColumns.KEY_ALARM)) {
throw new IllegalArgumentException(
"Status bar mixnmatch component does not have a related column");
"Alarm mixnmatch component does not have a related column");
} else if (component.equals(MixnMatchColumns.KEY_NAVIGATION_BAR)) {
throw new IllegalArgumentException(
"Navigation bar mixnmatch component does not have a related column");