[mapguide-commits] r9056 - trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI
svn_mapguide at osgeo.org
svn_mapguide at osgeo.org
Tue Sep 27 00:23:24 PDT 2016
Author: hm
Date: 2016-09-27 00:23:24 -0700 (Tue, 27 Sep 2016)
New Revision: 9056
Modified:
trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/PlatformConnectionBase.cs
Log:
#2743 - Fixed Infinite recursive call in CreateMapLayer
Modified: trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/PlatformConnectionBase.cs
===================================================================
--- trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/PlatformConnectionBase.cs 2016-09-23 11:23:10 UTC (rev 9055)
+++ trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/PlatformConnectionBase.cs 2016-09-27 07:23:24 UTC (rev 9056)
@@ -2002,7 +2002,7 @@
/// <param name="parent">The parent runtime map. The runtime map must have been created or opened from this same service instance</param>
/// <param name="source">The map definition layer</param>
/// <returns></returns>
- public RuntimeMapLayer CreateMapLayer(RuntimeMap parent, IMapLayer source) => CreateMapLayer(parent, source);
+ public RuntimeMapLayer CreateMapLayer(RuntimeMap parent, IMapLayer source) => CreateMapLayer(parent, source, false);
/// <summary>
/// Creates a new runtime map layer from the specified <see cref="T:OSGeo.MapGuide.ObjectModels.MapDefinition.IBaseMapLayer"/> instance
More information about the mapguide-commits
mailing list