unnecessary type-conversion.

This commit is contained in:
glax 2023-05-17 19:19:40 +02:00
parent 9ef63c9886
commit 56ac9dc948

View File

@ -18,7 +18,7 @@ public class Tag
switch (key)
{
case TagType.highway:
this.value = (WayType)value.GetByte();
this.value = value.GetByte();
break;
case TagType.maxspeed:
this.value = value.GetByte();