Object Oriented module is not an Exporter.
authorJoe Atzberger (siptest <atz4sip@arwen.metavore.com>
Wed, 4 Jun 2008 23:14:43 +0000 (18:14 -0500)
committerJoshua Ferraro <jmf@liblime.com>
Fri, 6 Jun 2008 03:43:28 +0000 (22:43 -0500)
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
C4/SIP/Sip/Configuration/Account.pm

index 8b2a0e7..7b3d03e 100644 (file)
@@ -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};
 }