Skip to content

Commit

Permalink
Fix issue where native apps throw errors when session transcription e…
Browse files Browse the repository at this point in the history
  • Loading branch information
daviwil committed Oct 27, 2017
1 parent 045835d commit 58b8534
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -176,11 +176,7 @@ public override void FlushInputBuffer()
/// <returns>A BufferCell array with the requested buffer contents.</returns>
public override BufferCell[,] GetBufferContents(Rectangle rectangle)
{
Logger.Write(
LogLevel.Warning,
"PSHostRawUserInterface.GetBufferContents was called");

throw new System.NotImplementedException();
return new BufferCell[0,0];
}

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,11 +208,7 @@ public override void FlushInputBuffer()
/// <returns>A BufferCell array with the requested buffer contents.</returns>
public override BufferCell[,] GetBufferContents(Rectangle rectangle)
{
Logger.Write(
LogLevel.Warning,
"PSHostRawUserInterface.GetBufferContents was called");

throw new System.NotImplementedException();
return new BufferCell[0,0];
}

/// <summary>
Expand Down

0 comments on commit 58b8534

Please sign in to comment.