Index: DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/Importers/LocationPropertyImporter.cs =================================================================== diff -u -r3867 -r3872 --- DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/Importers/LocationPropertyImporter.cs (.../LocationPropertyImporter.cs) (revision 3867) +++ DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/Importers/LocationPropertyImporter.cs (.../LocationPropertyImporter.cs) (revision 3872) @@ -281,9 +281,9 @@ } #if DEBUG - Debug.WriteLine(new string('=', 80)); - Debug.WriteLine(fileName); - var stopwatch = new Stopwatch(); + System.Diagnostics.Debug.WriteLine(new string('=', 80)); + System.Diagnostics.Debug.WriteLine(fileName); + var stopwatch = new System.Diagnostics.Stopwatch(); stopwatch.Start(); #endif @@ -317,9 +317,9 @@ if (progress != null) progress(curProgress); #if DEBUG stopwatch.Stop(); - Debug.WriteLine(string.Format("Number of source features: {0}", isPolygonTypeRepository ? targetCount : crossSectionCount)); - Debug.WriteLine(string.Format("Number of target features: {0}", attributeRepository.Count)); - Debug.WriteLine(string.Format("Time elapsed: {0}s", stopwatch.Elapsed.TotalSeconds)); + System.Diagnostics.Debug.WriteLine(string.Format("Number of source features: {0}", isPolygonTypeRepository ? targetCount : crossSectionCount)); + System.Diagnostics.Debug.WriteLine(string.Format("Number of target features: {0}", attributeRepository.Count)); + System.Diagnostics.Debug.WriteLine(string.Format("Time elapsed: {0}s", stopwatch.Elapsed.TotalSeconds)); #endif } }