From 2911e0c341aa6485c74bb1ac604375d44d9289f5 Mon Sep 17 00:00:00 2001 From: Avery Pennarun Date: Sat, 15 Nov 2008 22:20:04 -0500 Subject: [PATCH] Fix recently-introduced warning in vxschema.cs. --- versaplexd/vxschema.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versaplexd/vxschema.cs b/versaplexd/vxschema.cs index 66f7e72..386193e 100644 --- a/versaplexd/vxschema.cs +++ b/versaplexd/vxschema.cs @@ -52,7 +52,7 @@ internal class VxSchemaElement : IComparable try { if (type == "Table") return new VxSchemaTable(name, text); - } catch (ArgumentException e) { + } catch (ArgumentException) { // if the table data is invalid, just ignore it. // We'll fall through and load a VxSchemaElement instead. } -- 2.11.4.GIT