diff --git a/lib/WebGUI/Shop/Cart.pm b/lib/WebGUI/Shop/Cart.pm index 8d18a7802..62fc97c82 100644 --- a/lib/WebGUI/Shop/Cart.pm +++ b/lib/WebGUI/Shop/Cart.pm @@ -503,10 +503,6 @@ sub readyForCheckout { my $address = eval{$self->getShippingAddress}; return 0 if WebGUI::Error->caught; - # Check if the ship driver is chosen and existant - my $ship = eval {$self->getShipper}; - return 0 if WebGUI::Error->caught; - # Check if the cart has items return 0 unless scalar @{ $self->getItems };