From ad5e24191bb7ea0424440c03c87e0c1190daff70 Mon Sep 17 00:00:00 2001 From: Eric Fontana Date: Fri, 8 Aug 2014 14:44:48 -0400 Subject: [PATCH] Cleaned up warnings --- TimberWinR.UnitTests/Configuration.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TimberWinR.UnitTests/Configuration.cs b/TimberWinR.UnitTests/Configuration.cs index 1001ba4..db572ca 100644 --- a/TimberWinR.UnitTests/Configuration.cs +++ b/TimberWinR.UnitTests/Configuration.cs @@ -37,7 +37,7 @@ namespace TimberWinR.UnitTests Configuration c = Configuration.FromString(grokJson); Assert.IsTrue(false, "Should have thrown an exception"); } - catch (TimberWinR.Parser.Grok.GrokFilterException ex) + catch (TimberWinR.Parser.Grok.GrokFilterException) { } } @@ -67,7 +67,7 @@ namespace TimberWinR.UnitTests Configuration c = Configuration.FromString(grokJson); Assert.IsTrue(false, "Should have thrown an exception"); } - catch (TimberWinR.Parser.Grok.GrokAddTagException ex) + catch (TimberWinR.Parser.Grok.GrokAddTagException) { } }