Fix warnings.

This commit is contained in:
Marc 2013-04-04 12:29:08 -07:00
parent 7c272afe56
commit 19e670565c
2 changed files with 2 additions and 2 deletions

View File

@ -78,7 +78,7 @@ public class Conn
m_streamNet.Flush(); m_streamNet.Flush();
} }
catch( Exception e ) catch( Exception )
{ {
//m_streamNet.Close(); //m_streamNet.Close();
//m_socket.Close(); //m_socket.Close();

View File

@ -181,7 +181,7 @@ public class XmlFormatter2 : IFormatter
{ {
return s_conv.Convert( val, type ); return s_conv.Convert( val, type );
} }
catch( Exception e ) catch( Exception )
{ {
return GetDefault( type ); return GetDefault( type );
} }