|
From: <jgr...@us...> - 2003-09-20 21:28:58
|
Update of /cvsroot/popfile/engine/POPFile
In directory sc8-pr-cvs1:/tmp/cvs-serv21327/POPFile
Modified Files:
Loader.pm
Log Message:
Remove the version method from Loader because there was already CORE_version doing the same thing
Index: Loader.pm
===================================================================
RCS file: /cvsroot/popfile/engine/POPFile/Loader.pm,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** Loader.pm 19 Sep 2003 20:18:52 -0000 1.9
--- Loader.pm 20 Sep 2003 21:28:23 -0000 1.10
***************
*** 567,571 ****
}
! print "\n\nPOPFile Engine ", $self->version(), " running\n" if $self->{debug__};
flush STDOUT;
}
--- 567,571 ----
}
! print "\n\nPOPFile Engine ", $self->CORE_version(), " running\n" if $self->{debug__};
flush STDOUT;
}
***************
*** 750,760 ****
# GETTER/SETTER
-
- sub version
- {
- my ( $self ) = @_;
-
- return $self->{version_string__};
- }
sub debug
--- 750,753 ----
|