From e35998fe0888f71a9356ee04d050223f4e202634 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Wed, 29 Nov 2006 18:16:21 +0000 Subject: [PATCH] Remove isodate(), which is now in Utils.pm Remove Exporter scaffolding. --- lib/ZOOM/IRSpy/Test.pm | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/lib/ZOOM/IRSpy/Test.pm b/lib/ZOOM/IRSpy/Test.pm index 7cd0a18..0055e82 100644 --- a/lib/ZOOM/IRSpy/Test.pm +++ b/lib/ZOOM/IRSpy/Test.pm @@ -1,4 +1,4 @@ -# $Id: Test.pm,v 1.6 2006-10-13 10:08:57 sondberg Exp $ +# $Id: Test.pm,v 1.7 2006-11-29 18:16:21 mike Exp $ package ZOOM::IRSpy::Test; @@ -6,9 +6,6 @@ use 5.008; use strict; use warnings; -use Exporter 'import'; -our @EXPORT = qw(isodate); - =head1 NAME ZOOM::IRSpy::Test - base class for tests in IRSpy @@ -33,17 +30,6 @@ sub start { } - -# Utility function, really nothing to do with IRSpy -sub isodate { - my($time) = @_; - - my($sec, $min, $hour, $mday, $mon, $year) = localtime($time); - return sprintf("%04d-%02d-%02dT%02d:%02d:%02d", - $year+1900, $mon+1, $mday, $hour, $min, $sec); -} - - =head1 SEE ALSO ZOOM::IRSpy -- 1.7.10.4