Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2018-03-16 14:07:54 +0300
committerbubnikv <bubnikv@gmail.com>2018-03-16 14:07:54 +0300
commite162c47167b21285925e871b61956f29a083ca42 (patch)
treea7ae5cc4f76006ff61a8a1e99b1f7a4ca8ff6755
parenta38cbac312039f4fcb45fc9dc65e3748885df21d (diff)
Removed some dependencies on Perl IO module.
-rw-r--r--lib/Slic3r/Test.pm1
-rw-r--r--t/svg.t1
-rw-r--r--utils/gcode_sectioncut.pl1
3 files changed, 1 insertions, 2 deletions
diff --git a/lib/Slic3r/Test.pm b/lib/Slic3r/Test.pm
index 53d6d1024..6471ae123 100644
--- a/lib/Slic3r/Test.pm
+++ b/lib/Slic3r/Test.pm
@@ -7,7 +7,6 @@ require Exporter;
our @ISA = qw(Exporter);
our @EXPORT_OK = qw(_eq);
-use IO::Scalar;
use List::Util qw(first);
use Slic3r::Geometry qw(epsilon X Y Z);
diff --git a/t/svg.t b/t/svg.t
index 6092efe24..47d24ceb8 100644
--- a/t/svg.t
+++ b/t/svg.t
@@ -10,6 +10,7 @@ BEGIN {
use Slic3r;
use Slic3r::Test;
+use IO::Scalar;
{
my $print = Slic3r::Test::init_print('20mm_cube');
diff --git a/utils/gcode_sectioncut.pl b/utils/gcode_sectioncut.pl
index afc011ce8..e83f3fcda 100644
--- a/utils/gcode_sectioncut.pl
+++ b/utils/gcode_sectioncut.pl
@@ -11,7 +11,6 @@ BEGIN {
}
use Getopt::Long qw(:config no_auto_abbrev);
-use IO::All;
use List::Util qw(max);
use Slic3r;
use Slic3r::Geometry qw(X Y);