Skip to content

Commit

Permalink
ref: Remove UnsupportedFeatureConfigurationException (unused). (jitsi…
Browse files Browse the repository at this point in the history
  • Loading branch information
bgrozev authored Aug 14, 2023
1 parent 5bfaea8 commit 1d2b7f1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 39 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -162,17 +162,7 @@ public void run()

private void doRun()
{
Offer offer;

try
{
offer = createOffer();
}
catch (UnsupportedFeatureConfigurationException e)
{
logger.error("Error creating offer", e);
return;
}
Offer offer = createOffer();
if (canceled)
{
return;
Expand Down Expand Up @@ -279,7 +269,6 @@ public String toString()
* {@inheritDoc}
*/
private Offer createOffer()
throws UnsupportedFeatureConfigurationException
{
OfferOptions offerOptions = new OfferOptions();
OfferOptionsUtilKt.applyConstraints(offerOptions, participant);
Expand Down

This file was deleted.

0 comments on commit 1d2b7f1

Please sign in to comment.