diff --git a/HexGridExampleCommon/EmptyGridHex.cs b/HexGridExampleCommon/EmptyGridHex.cs
index a40ebed..4a4ad1e 100644
--- a/HexGridExampleCommon/EmptyGridHex.cs
+++ b/HexGridExampleCommon/EmptyGridHex.cs
@@ -32,9 +32,7 @@ namespace PGNapoleonics.HexgridExampleCommon {
/// TODO
public sealed class EmptyGridHex : Hex {
/// TODO
- public EmptyGridHex(HexCoords coords) : base(coords,0) {
- TerrainType = 'Z'; // Expression body causes a Doxygen warning
- }
+ public EmptyGridHex(HexCoords coords) : base(coords,0) => TerrainType = default(char);
///
public override char TerrainType { get; }
diff --git a/HexGridExampleCommon/HexgridExampleCommon.csproj b/HexGridExampleCommon/HexgridExampleCommon.csproj
index 9956b13..7b1106a 100644
--- a/HexGridExampleCommon/HexgridExampleCommon.csproj
+++ b/HexGridExampleCommon/HexgridExampleCommon.csproj
@@ -65,7 +65,6 @@
-
diff --git a/HexGridExampleCommon/MapList.cs b/HexGridExampleCommon/MapList.cs
index ede0761..34fbce0 100644
--- a/HexGridExampleCommon/MapList.cs
+++ b/HexGridExampleCommon/MapList.cs
@@ -29,53 +29,15 @@
using System.Collections.Generic;
using System.Collections.ObjectModel;
-using PGNapoleonics.HexUtilities;
using PGNapoleonics.HexUtilities.Common;
namespace PGNapoleonics.HexgridExampleCommon {
- using MapGridHex = IHex;
-
- /// TODO
- public delegate MapDisplay MapExtractor();
-
- /// TODO
- public struct Map {
- /// TODO
- public Map(string mapName, MapExtractor mapSource) : this() {
- MapName = mapName;
- MapSource = mapSource;
- }
-
- /// TODO
- public string MapName { get; }
- /// TODO
- public MapDisplay MapBoard => MapSource();
-
- private MapExtractor MapSource { get; }
-
- /// TODO
- public static IReadOnlyList