From 9eba4ba43770aa614ddcc8cb5375e4c799b1a22f Mon Sep 17 00:00:00 2001 From: kronic Date: Tue, 8 Aug 2023 10:54:00 +0300 Subject: [PATCH] Remove redundant ";" --- XmlSchemaClassGenerator.Tests/SharedTestFunctions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/XmlSchemaClassGenerator.Tests/SharedTestFunctions.cs b/XmlSchemaClassGenerator.Tests/SharedTestFunctions.cs index e97b8796..a2299fe0 100644 --- a/XmlSchemaClassGenerator.Tests/SharedTestFunctions.cs +++ b/XmlSchemaClassGenerator.Tests/SharedTestFunctions.cs @@ -126,7 +126,7 @@ void validate2(object s, ValidationEventArgs e) { if (HandleValidationError(output, xmlLines, e)) throw e.Exception; - }; + } settings.ValidationEventHandler += validate2;