From 926e6135e55db3ef1f8cea61ed26c58e54526a0a Mon Sep 17 00:00:00 2001 From: "Joe Atzberger (siptest" Date: Wed, 4 Jun 2008 18:14:43 -0500 Subject: [PATCH] Object Oriented module is not an Exporter. Signed-off-by: Joshua Ferraro --- C4/SIP/Sip/Configuration/Account.pm | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/C4/SIP/Sip/Configuration/Account.pm b/C4/SIP/Sip/Configuration/Account.pm index 8b2a0e74cb..7b3d03e7b0 100644 --- a/C4/SIP/Sip/Configuration/Account.pm +++ b/C4/SIP/Sip/Configuration/Account.pm @@ -8,7 +8,7 @@ package Sip::Configuration::Account; use strict; use warnings; use English; -use Exporter; +# use Exporter; sub new { my ($class, $obj) = @_; @@ -24,19 +24,16 @@ sub new { sub id { my $self = shift; - return $self->{id}; } sub institution { my $self = shift; - return $self->{institution}; } sub password { my $self = shift; - return $self->{password}; } -- 2.39.2