Revert "split_at_first_point needn't call deserialize as split_at calls it."

This reverts commit a6d8d6473c.
This commit is contained in:
Mark Hindess 2012-07-02 16:57:29 +01:00
parent 60ca76ff05
commit 35fda7de23

View file

@ -60,6 +60,7 @@ sub split_at {
sub split_at_first_point {
my $self = shift;
$self->deserialize;
return $self->split_at($self->polygon->[0]);
}