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.

This commit is contained in:
ian%hixie.ch 2002-04-06 21:34:39 +00:00
parent 6b0ed86249
commit df6bd7a3a6

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(@_);