change the constructor to be a service instance constructor only, so that if descendants are also services, we don't leak the world through having a circular reference to the app.

git-svn-id: svn://10.0.0.236/trunk@118404 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
ian%hixie.ch 2002-04-06 21:34:39 +00:00
parent 359d0fecd2
commit 2e245e7a52

View File

@ -44,7 +44,7 @@ sub protocol {
$self->notImplemented(); # this must be overriden by descendants
}
sub init {
sub serviceInstanceInit {
my $self = shift;
my($app) = @_;
$self->SUPER::init(@_);