Skip to content

Commit

Permalink
Fixes #5 for sure
Browse files Browse the repository at this point in the history
  • Loading branch information
sibartlett committed Dec 29, 2013
1 parent 2a31b85 commit 0a24e47
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 1 deletion.
Binary file modified Geo.Raven.nuspec
Binary file not shown.
Binary file modified Geo.nuspec
Binary file not shown.
2 changes: 1 addition & 1 deletion Geo/Geometries/GeometryCollection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public override Envelope GetBounds()
if (envelope == null)
envelope = geometry.GetBounds();
else
envelope.Combine(geometry.GetBounds());
envelope = envelope.Combine(geometry.GetBounds());
}
return envelope;
}
Expand Down

0 comments on commit 0a24e47

Please sign in to comment.