Skip to content

Commit

Permalink
Fix a copy-paste error.
Browse files Browse the repository at this point in the history
Resolves #2
  • Loading branch information
airbreather committed May 17, 2019
1 parent 6be52ef commit fa8c869
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ private void AddPolygon(SqlGeographyBuilder builder, IGeometry geometry)

AddCoordinates(builder, TryReverseRing((ILinearRing)polygon.ExteriorRing, true).CoordinateSequence);

Array.ForEach(polygon.InteriorRings, ring => AddCoordinates(builder, TryReverseRing((ILinearRing)polygon.ExteriorRing, false).CoordinateSequence));
Array.ForEach(polygon.InteriorRings, ring => AddCoordinates(builder, TryReverseRing((ILinearRing)ring, false).CoordinateSequence));
builder.EndGeography();
}

Expand Down

0 comments on commit fa8c869

Please sign in to comment.