remove dead string

This commit is contained in:
Eric House 2022-12-10 08:08:54 -08:00
parent 497bac22dd
commit ed21fe01f4
2 changed files with 1 additions and 5 deletions

View file

@ -557,7 +557,7 @@ public class DBUtils {
InviteMeans means = m_means.get(ii); InviteMeans means = m_means.get(ii);
String target = m_targets.get(ii); String target = m_targets.get(ii);
String timestamp = m_timestamps.get(ii).toString(); String timestamp = m_timestamps.get(ii).toString();
String msg; String msg = null;
switch ( means ) { switch ( means ) {
case SMS_DATA: case SMS_DATA:
@ -575,8 +575,6 @@ public class DBUtils {
break; break;
case RELAY: case RELAY:
Assert.failDbg(); Assert.failDbg();
msg = LocUtils.getString( context, R.string.invit_expl_relay_fmt,
timestamp );
break; break;
case MQTT: case MQTT:
String player = XwJNI.kplr_nameForMqttDev( target ); String player = XwJNI.kplr_nameForMqttDev( target );

View file

@ -494,8 +494,6 @@
<string name="sms_invite_fail">Unable to launch SMS app</string> <string name="sms_invite_fail">Unable to launch SMS app</string>
<string name="invit_expl_bt_fmt">Invite sent via Bluetooth to <string name="invit_expl_bt_fmt">Invite sent via Bluetooth to
paired device “%1$s” on %2$s</string> paired device “%1$s” on %2$s</string>
<string name="invit_expl_relay_fmt">Invite forwarded by the relay
to another device on %1$s</string>
<string name="invit_expl_notarget_fmt">Invite sent via %1$s on <string name="invit_expl_notarget_fmt">Invite sent via %1$s on
%2$s. Recipient unknown.</string> %2$s. Recipient unknown.</string>
<!-- In "more info" about sent invitations when mqtt used and <!-- In "more info" about sent invitations when mqtt used and