diff --git a/RequireJsNet/Configuration/XmlReader.cs b/RequireJsNet/Configuration/XmlReader.cs index 2fa4d4b..52010c1 100644 --- a/RequireJsNet/Configuration/XmlReader.cs +++ b/RequireJsNet/Configuration/XmlReader.cs @@ -42,11 +42,12 @@ private RequirePaths GetPaths(XElement root) var pathEl = root.Descendants("paths").FirstOrDefault(); if (pathEl != null) { - paths.PathList = pathEl.Descendants("path").Select(r => new RequirePath - { - Key = r.Attribute("key").Value, - Value = r.Attribute("value").Value - }).ToList(); + paths.PathList = pathEl.Descendants("path") + .Select(r => new RequirePath + { + Key = r.Attribute("key").Value, + Value = r.Attribute("value").Value + }).ToList(); } return paths; } @@ -59,7 +60,8 @@ private RequireShim GetShim(XElement root) if (shimEl != null) { shim.ShimEntries = shimEl.Descendants("dependencies") - .Select(ShimEntryReader).ToList(); + .Select(ShimEntryReader) + .ToList(); } return shim; } @@ -91,7 +93,8 @@ private RequireMap GetMap(XElement root) if (mapEl != null) { map.MapElements = mapEl.Descendants("replace") - .Select(MapElementReader).ToList(); + .Select(MapElementReader) + .ToList(); } return map; }