Delete useless parameters of string

Bug: 211766972
Test: build pass
Change-Id: I83969753a5d2f632182e0dd241905474899f1c6d
This commit is contained in:
Hugh Chen
2021-12-24 03:58:46 +00:00
parent ef9718c922
commit a08897bcb3

View File

@@ -147,15 +147,13 @@ public final class BluetoothPermissionRequest extends BroadcastReceiver {
title = context.getString(
R.string.bluetooth_sim_card_access_notification_title);
message = context.getString(
R.string.bluetooth_sim_card_access_notification_content,
deviceAlias, deviceAlias);
R.string.bluetooth_sim_card_access_notification_content);
break;
default:
title = context.getString(
R.string.bluetooth_connect_access_notification_title);
message = context.getString(
R.string.bluetooth_connect_access_notification_content,
deviceAlias, deviceAlias);
R.string.bluetooth_connect_access_notification_content);
break;
}
NotificationManager notificationManager =