From 9f21d5b3c2ff59cfe7a37e50142f3c5a6ae1d51d Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Sat, 19 May 2012 21:03:24 +0200 Subject: [PATCH] One more debugging statement left in --- lib/Slic3r/Geometry.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Slic3r/Geometry.pm b/lib/Slic3r/Geometry.pm index 989f98659..304a0fecf 100644 --- a/lib/Slic3r/Geometry.pm +++ b/lib/Slic3r/Geometry.pm @@ -236,7 +236,7 @@ sub polyline_lines { } sub polygon_lines { - my ($polygon) = @_;use XXX; ZZZ $polygon if !eval { @$polygon }; + my ($polygon) = @_; return polyline_lines([ @$polygon, $polygon->[0] ]); }