Merge "Lower case the first letter of storage type."

This commit is contained in:
Daniel Nishi
2017-03-29 21:13:18 +00:00
committed by Android (Google) Code Review
2 changed files with 3 additions and 3 deletions

View File

@@ -712,7 +712,7 @@ public class InstalledAppDetails extends AppInfoBase
? R.string.storage_type_external
: R.string.storage_type_internal);
return context.getString(R.string.storage_summary_format,
getSize(context, stats), storageType);
getSize(context, stats), storageType.toString().toLowerCase());
}
}