Skip to content

Commit

Permalink
Checkstyle fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanLennox committed Feb 27, 2024
1 parent b7b53f3 commit d85aa96
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2031,7 +2031,8 @@ private void rescheduleSingleParticipantTimeout()
private void visitorAdded(List<String> codecs)
{
visitorCount.adjustValue(+1);
if (codecs != null) {
if (codecs != null)
{
visitorCodecs.addPreference(codecs);
}
}
Expand All @@ -2040,7 +2041,8 @@ private void visitorAdded(List<String> codecs)
private void visitorRemoved(List<String> codecs)
{
visitorCount.adjustValue(-1);
if (codecs != null) {
if (codecs != null)
{
visitorCodecs.removePreference(codecs);
}
}
Expand Down

0 comments on commit d85aa96

Please sign in to comment.