From f868f5ba2d6e69900dd561a50b848e457d8b3112 Mon Sep 17 00:00:00 2001 From: C9Glax <13404778+C9Glax@users.noreply.github.com> Date: Sun, 5 Feb 2023 20:45:33 +0100 Subject: [PATCH] Removed unesseccary console clutter --- OSMDatastructure/ByteConverter.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/OSMDatastructure/ByteConverter.cs b/OSMDatastructure/ByteConverter.cs index 82dce29..2f81c9c 100644 --- a/OSMDatastructure/ByteConverter.cs +++ b/OSMDatastructure/ByteConverter.cs @@ -61,7 +61,6 @@ public static class ByteConverter offset += sizeof(float); Node retNode = new Node(lat, lon); - Console.WriteLine("Node Lat: {0} Lon: {1}", lat, lon); while (offset < bytes.Length) { @@ -140,7 +139,6 @@ public static class ByteConverter Connection retConnection = new Connection(endId, new Coordinates(endLat, endLon)); int tagBytes = BitConverter.ToInt32(bytes, offset); - Console.WriteLine("Connection EndId: {0} Lat: {1} Lon: {2} Tags: {3}", endId, endLat, endLon, tagBytes / 2); offset += sizeof(int); while (offset < bytes.Length) { @@ -205,9 +203,7 @@ public static class ByteConverter int offset = 0; ulong regionHash = BitConverter.ToUInt64(bytes, offset); offset += sizeof(ulong); - - Console.WriteLine("Region: {0}", regionHash); - + Region retRegion = new Region(regionHash); while (offset < bytes.Length)