split_at_first_point needn't call deserialize as split_at calls it.

This commit is contained in:
Mark Hindess 2012-07-01 22:52:13 +01:00
parent 641c2a241b
commit a6d8d6473c

View File

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