Code cleanup from first DTMF patch.

Removed unnecessary System.out.printIn from DTMF patch.
Removed getDtmfSender hack from JingleRtpConnection.
This commit is contained in:
root21 2021-10-11 13:17:29 -06:00 committed by Stephen Paul Weber
parent 3ae8ada44a
commit d1b3c57e42
No known key found for this signature in database
GPG key ID: D11C2911CE519CDE
2 changed files with 0 additions and 6 deletions

View file

@ -147,7 +147,6 @@ public class RtpSessionActivity extends XmppActivity implements XmppConnectionSe
if (savedInstanceState != null) {
int dialpad_visibility = savedInstanceState.getInt("dialpad_visibility");
System.out.println("dialpad_visibility onCreate = " + dialpad_visibility);
findViewById(R.id.dialpad).setVisibility(dialpad_visibility);
}
}

View file

@ -230,11 +230,6 @@ public class JingleRtpConnection extends AbstractJingleConnection implements Web
}
}
//TODO: remove - hack to test dtmfSending
public DtmfSender getDtmfSender() {
return webRTCWrapper.getDtmfSender();
}
//FIXME: possible implementation
public boolean applyDtmfTone(String tone) {
return webRTCWrapper.applyDtmfTone(tone);