Skip to content

Commit

Permalink
remove @nodec comment for internal functions. (#471)
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudwebrtc authored Feb 24, 2024
1 parent 3177e79 commit b182e79
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
6 changes: 0 additions & 6 deletions lib/src/participant/participant.dart
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,6 @@ abstract class Participant<T extends TrackPublication>
});
}

/// for internal use
/// {@nodoc}
@internal
set isSpeaking(bool speaking) {
if (_isSpeaking == speaking) {
Expand Down Expand Up @@ -178,8 +176,6 @@ abstract class Participant<T extends TrackPublication>
));
}

/// for internal use
/// {@nodoc}
@internal
Future<bool> updateFromInfo(lk_models.ParticipantInfo info) async {
if (_participantInfo != null &&
Expand Down Expand Up @@ -219,8 +215,6 @@ abstract class Participant<T extends TrackPublication>
));
}

/// for internal use
/// {@nodoc}
@internal
void addTrackPublication(T pub) {
pub.track?.sid = pub.sid;
Expand Down
4 changes: 0 additions & 4 deletions lib/src/participant/remote.dart
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,6 @@ class RemoteParticipant extends Participant<RemoteTrackPublication> {
return null;
}

/// for internal use
/// {@nodoc}
@internal
Future<void> addSubscribedMediaTrack(
rtc.MediaStreamTrack mediaTrack,
Expand Down Expand Up @@ -193,8 +191,6 @@ class RemoteParticipant extends Participant<RemoteTrackPublication> {
));
}

/// for internal use
/// {@nodoc}
@override
@internal
Future<bool> updateFromInfo(lk_models.ParticipantInfo info) async {
Expand Down

0 comments on commit b182e79

Please sign in to comment.