Skip to content

Commit

Permalink
cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudwebrtc committed Nov 30, 2024
1 parent c260470 commit e846e0c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
8 changes: 0 additions & 8 deletions lib/src/context/participant_context.dart
Original file line number Diff line number Diff line change
Expand Up @@ -98,14 +98,6 @@ class ParticipantContext extends ChangeNotifier {
notifyListeners();
}
})
..on<TrackSubscribedEvent>((event) {
if (event.participant.identity == identity &&
event.publication.kind == TrackType.AUDIO) {
Debug.event(
'TrackContext: TrackSubscribedEvent for ${_participant.sid}');
notifyListeners();
}
})
..on<TrackUnmutedEvent>((event) {
if (event.participant.identity == identity &&
event.publication.kind == TrackType.AUDIO) {
Expand Down
4 changes: 0 additions & 4 deletions lib/src/context/track_reference_context.dart
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,6 @@ class TrackReferenceContext extends ChangeNotifier {

bool get showStatistics => _showStatistics;

AudioVisualizerEvent? _audioVisualizerEvent;

AudioVisualizerEvent? get audioVisualizerEvent => _audioVisualizerEvent;

set showStatistics(bool value) {
if (_showStatistics != value) {
_showStatistics = value;
Expand Down

0 comments on commit e846e0c

Please sign in to comment.