This commit is contained in:
glax 2023-03-30 16:30:50 +02:00
parent 0e70c72562
commit cb0442d760

View File

@ -15,6 +15,7 @@ public class TmpWay
public static TmpWay FromBytes(byte[] bytes) public static TmpWay FromBytes(byte[] bytes)
{ {
throw new NotImplementedException();/*
using (MemoryStream m = new MemoryStream(bytes)) { using (MemoryStream m = new MemoryStream(bytes)) {
using (BinaryReader r = new BinaryReader(m)) using (BinaryReader r = new BinaryReader(m))
{ {
@ -25,6 +26,6 @@ public class TmpWay
wayNodeIds[i] = r.ReadUInt64(); wayNodeIds[i] = r.ReadUInt64();
return new TmpWay(id, wayNodeIds); return new TmpWay(id, wayNodeIds);
} }
} }*/
} }
} }