Browse Source

warnings

svn path=/trunk/mcs/; revision=63624
Gonzalo Paniagua Javier 19 năm trước cách đây
mục cha
commit
4f71124870
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      mcs/class/System/System.Net.Sockets/Socket.cs

+ 2 - 2
mcs/class/System/System.Net.Sockets/Socket.cs

@@ -782,7 +782,7 @@ namespace System.Net.Sockets
 			blocking_thread = Thread.CurrentThread;
 			try {
 				sock = Accept_internal(socket, out error);
-			} catch (ThreadAbortException the) {
+			} catch (ThreadAbortException) {
 				if (disposed) {
 					Thread.ResetAbort ();
 					error = 10004;
@@ -1072,7 +1072,7 @@ namespace System.Net.Sockets
 			blocking_thread = Thread.CurrentThread;
 			try {
 				Connect_internal (socket, serial, out error);
-			} catch (ThreadAbortException the) {
+			} catch (ThreadAbortException) {
 				if (disposed) {
 					Thread.ResetAbort ();
 					error = 10004;