Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove @nodec comment for internal functions. #471

Merged
merged 1 commit into from
Feb 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading