Skip to content
This repository has been archived by the owner on Sep 3, 2019. It is now read-only.

Commit

Permalink
Another node without empty tag collection.
Browse files Browse the repository at this point in the history
  • Loading branch information
xivk committed Apr 29, 2014
1 parent 0ecbae1 commit 2dbb932
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ public void Scene2DSimpleSerializeDeserializeTest()
{
case OsmGeoType.Node:
completeOsmGeo = osmGeo as Node;
if(completeOsmGeo.Tags == null)
{ // make sure every node has a tags collection.
completeOsmGeo.Tags = new TagsCollection();
}
break;
case OsmGeoType.Way:
completeOsmGeo = CompleteWay.CreateFrom(osmGeo as Way,
Expand Down

2 comments on commit 2dbb932

@xivk
Copy link
Contributor Author

@xivk xivk commented on 2dbb932 Apr 29, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TeamCity OsmSharp :: GitHub - OsmSharp Build 687 is now running

@xivk
Copy link
Contributor Author

@xivk xivk commented on 2dbb932 Apr 29, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TeamCity OsmSharp :: GitHub - OsmSharp Build 4.0.6.687 outcome was SUCCESS
Summary: Tests passed: 452 Build time: 0:0:0

Please sign in to comment.