diff options
author | Justin Clark-Casey (justincc) | 2009-11-09 17:09:56 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2009-11-09 17:09:56 +0000 |
commit | 1afe5a528ce4c4946841ae874a8bae81b27df291 (patch) | |
tree | e3afa8a4ba5b0fcb0939c554abea3f178f7208db /OpenSim | |
parent | refactor: break actual item load in iar into separate method (diff) | |
download | opensim-SC_OLD-1afe5a528ce4c4946841ae874a8bae81b27df291.zip opensim-SC_OLD-1afe5a528ce4c4946841ae874a8bae81b27df291.tar.gz opensim-SC_OLD-1afe5a528ce4c4946841ae874a8bae81b27df291.tar.bz2 opensim-SC_OLD-1afe5a528ce4c4946841ae874a8bae81b27df291.tar.xz |
minor: remove some mono compiler warnings
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/OpenSimUDPBase.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/OpenSimUDPBase.cs b/OpenSim/Region/ClientStack/LindenUDP/OpenSimUDPBase.cs index 552cc4a..d2779ba 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/OpenSimUDPBase.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/OpenSimUDPBase.cs | |||
@@ -270,8 +270,8 @@ namespace OpenMetaverse | |||
270 | { | 270 | { |
271 | try | 271 | try |
272 | { | 272 | { |
273 | UDPPacketBuffer buf = (UDPPacketBuffer)result.AsyncState; | 273 | // UDPPacketBuffer buf = (UDPPacketBuffer)result.AsyncState; |
274 | int bytesSent = m_udpSocket.EndSendTo(result); | 274 | m_udpSocket.EndSendTo(result); |
275 | } | 275 | } |
276 | catch (SocketException) { } | 276 | catch (SocketException) { } |
277 | catch (ObjectDisposedException) { } | 277 | catch (ObjectDisposedException) { } |