From 7310cec0873a0ae9e41704226fa795cd0384d1d0 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci <aar@cpan.org> Date: Fri, 16 Nov 2012 22:09:32 +0100 Subject: [PATCH] Remove one more unused line --- lib/Slic3r/Format/STL.pm | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/Slic3r/Format/STL.pm b/lib/Slic3r/Format/STL.pm index 0ac21fbc1..6e9665185 100644 --- a/lib/Slic3r/Format/STL.pm +++ b/lib/Slic3r/Format/STL.pm @@ -41,7 +41,6 @@ sub read_file { my $vertices = []; { my %vertices_map = (); # given a vertex's coordinates, what's its index? - my @vertices_facets = (); # given a vertex index, what are the indexes of its tangent facets? for (my $f = 0; $f <= $#$facets; $f++) { for (-3..-1) { my $point_id = join ',', @{$facets->[$f][$_]};