Skip to content

Commit

Permalink
Tweaked packet error handling.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmcbride committed Oct 13, 2014
1 parent 74b0a3c commit f7c7469
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion InSimDotNet/TcpSocket.cs
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,6 @@ private async void ReceiveAsync() {
Debug.WriteLine(String.Format(StringResources.TcpSocketDebugErrorMessage, ex));
Dispose();
OnSocketError(new InSimErrorEventArgs(ex));
throw;
}
}
}
Expand Down
1 change: 0 additions & 1 deletion InSimDotNet/UdpSocket.cs
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,6 @@ private async void ReceiveAsync() {
Debug.WriteLine(String.Format(StringResources.UdpSocketDebugErrorMessage, ex));
Dispose();
OnSocketError(new InSimErrorEventArgs(ex));
throw;
}
}
}
Expand Down

0 comments on commit f7c7469

Please sign in to comment.