am 32aa0bfd: am ad541608: am ad0f0edb: Merge "Call to equals() comparing different types"

* commit '32aa0bfdd5984970e22da9676c5f59cc0bf9203e':
  Call to equals() comparing different types
This commit is contained in:
Amith Yamasani
2013-09-12 10:01:02 -07:00
committed by Android Git Automerger

View File

@@ -1188,8 +1188,8 @@ public class DataUsageSummary extends Fragment {
final String rangePhrase = formatDateRange(context, start, end);
final int summaryRes;
if (TAB_MOBILE.equals(mCurrentTab) || TAB_3G.equals(mCurrentApp)
|| TAB_4G.equals(mCurrentApp)) {
if (TAB_MOBILE.equals(mCurrentTab) || TAB_3G.equals(mCurrentTab)
|| TAB_4G.equals(mCurrentTab)) {
summaryRes = R.string.data_usage_total_during_range_mobile;
} else {
summaryRes = R.string.data_usage_total_during_range;