Skip to content

Commit

Permalink
fix: Suppress warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Langsenkamp committed Jun 13, 2020
1 parent a24228b commit fffd462
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Assets/Mirror/Runtime/Transport/Websocket/ClientJs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ public class Client
public event Action Connected;
public event Action<ArraySegment<byte>> ReceivedData;
public event Action Disconnected;
#pragma warning disable CS0067 // The event is never used
#pragma warning disable CS0067 // The event is never used.
public event Action<Exception> ReceivedError;
#pragma warning restore CS0067 // The event is never used
#pragma warning restore CS0067 // The event is never used.

readonly ConcurrentQueue<byte[]> receivedQueue = new ConcurrentQueue<byte[]>();

Expand Down

0 comments on commit fffd462

Please sign in to comment.