From: <bo...@us...> - 2010-06-29 04:26:45
|
Revision: 409 http://xmlunit.svn.sourceforge.net/xmlunit/?rev=409&view=rev Author: bodewig Date: 2010-06-29 04:26:39 +0000 (Tue, 29 Jun 2010) Log Message: ----------- unused variable Modified Paths: -------------- trunk/xmlunit/src/main/net-core/validation/Validator.cs Modified: trunk/xmlunit/src/main/net-core/validation/Validator.cs =================================================================== --- trunk/xmlunit/src/main/net-core/validation/Validator.cs 2010-06-28 15:25:39 UTC (rev 408) +++ trunk/xmlunit/src/main/net-core/validation/Validator.cs 2010-06-29 04:26:39 UTC (rev 409) @@ -80,8 +80,7 @@ List<ValidationProblem> problems = new List<ValidationProblem>(); foreach (ISource loc in sourceLocations) { - XmlSchema s = XmlSchema.Read(loc.Reader, - CollectProblems(problems)); + XmlSchema.Read(loc.Reader, CollectProblems(problems)); } return new ValidationResult(problems.Count == 0, problems); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |