Redundant log message removed

This commit is contained in:
Sergey Eremin
2017-08-11 02:56:48 +03:00
parent e5c0e5c8e4
commit 3337cf43dc

View File

@@ -149,7 +149,7 @@ public class GeneralDetails extends Abstract {
try {
localizedPermissions.add(pm.getPermissionInfo(permissionName, 0).loadLabel(pm).toString());
} catch (PackageManager.NameNotFoundException e) {
Log.w(getClass().getName(), "No human-readable name found for permission " + permissionName);
// No human-readable name found for permission
}
}
setText(R.id.permissions, TextUtils.join("\n", localizedPermissions));