From 19e670565cf32d818785f052f3fdeb81edda0e2b Mon Sep 17 00:00:00 2001 From: Marc Date: Thu, 4 Apr 2013 12:29:08 -0700 Subject: [PATCH] Fix warnings. --- Conn.cs | 2 +- XmlFormatter2.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Conn.cs b/Conn.cs index 4b460b5..1536270 100644 --- a/Conn.cs +++ b/Conn.cs @@ -78,7 +78,7 @@ public class Conn m_streamNet.Flush(); } - catch( Exception e ) + catch( Exception ) { //m_streamNet.Close(); //m_socket.Close(); diff --git a/XmlFormatter2.cs b/XmlFormatter2.cs index 96bc0b0..cd4a0b8 100644 --- a/XmlFormatter2.cs +++ b/XmlFormatter2.cs @@ -181,7 +181,7 @@ public class XmlFormatter2 : IFormatter { return s_conv.Convert( val, type ); } - catch( Exception e ) + catch( Exception ) { return GetDefault( type ); }