Skip to content

Commit

Permalink
Fix tizen
Browse files Browse the repository at this point in the history
  • Loading branch information
VladislavAntonyuk committed Oct 25, 2024
1 parent 3f8b96f commit 3892a6e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public ValueTask DisposeAsync()
return ValueTask.CompletedTask;
}

void InternalStopListening(in SttClient? sttClient)
void InternalStopListening()
{
if (sttClient is null)
{
Expand Down Expand Up @@ -91,7 +91,7 @@ void OnStateChanged(object? sender, StateChangedEventArgs e)
}

[MemberNotNull(nameof(sttClient))]
void Initialize(CancellationToken cancellationToken)
void Initialize()
{
sttClient = new SttClient();

Expand All @@ -105,7 +105,7 @@ void Initialize(CancellationToken cancellationToken)
}
}

void InternalStartListenin(SpeechToTextOptions options)
void InternalStartListening(SpeechToTextOptions options)
{
Initialize();

Expand Down

0 comments on commit 3892a6e

Please sign in to comment.