Author: petdance
Date: Sun Dec 21 19:24:34 2008
New Revision: 34223
Modified:
trunk/lib/Parrot/Ops2c/Utils.pm
trunk/lib/Parrot/Test/Util/Runloop.pm
trunk/t/tools/parrot_debugger.t
Log:
no IO::File imports
Modified: trunk/lib/Parrot/Ops2c/Utils.pm
==============================================================================
--- trunk/lib/Parrot/Ops2c/Utils.pm (original)
+++ trunk/lib/Parrot/Ops2c/Utils.pm Sun Dec 21 19:24:34 2008
@@ -7,7 +7,7 @@
use Parrot::OpLib::core;
use Parrot::OpsFile;
use File::Spec;
-use IO::File;
+use IO::File ();
=head1 NAME
Modified: trunk/lib/Parrot/Test/Util/Runloop.pm
==============================================================================
--- trunk/lib/Parrot/Test/Util/Runloop.pm (original)
+++ trunk/lib/Parrot/Test/Util/Runloop.pm Sun Dec 21 19:24:34 2008
@@ -48,7 +48,7 @@
use Carp;
use Test::More;
-use IO::File;
+use IO::File ();
sub testloop {
my ($self, %args) = @_;
Modified: trunk/t/tools/parrot_debugger.t
==============================================================================
--- trunk/t/tools/parrot_debugger.t (original)
+++ trunk/t/tools/parrot_debugger.t Sun Dec 21 19:24:34 2008
@@ -32,7 +32,7 @@
use lib qw(lib);
use Test::More;
-use IO::File;
+use IO::File ();
use Parrot::Config;
use File::Spec;