Ignore:
Timestamp:
2008-09-08T12:35:53+12:00 (16 years ago)
Author:
kjdon
Message:

BasClas renamed to BaseClassifier, tidied up constructors

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/perllib/classify/DateList.pm

    r12891 r17209  
    4040package DateList;
    4141
    42 use BasClas;
     42use BaseClassifier;
    4343use sorttools;
    4444
     
    4747
    4848sub BEGIN {
    49     @DateList::ISA = ('BasClas');
     49    @DateList::ISA = ('BaseClassifier');
    5050}
    5151
     
    9191    push(@$classifierslist, $class);
    9292
    93     if(defined $arguments){ push(@{$hashArgOptLists->{"ArgList"}},@{$arguments});}
    94     if(defined $options) { push(@{$hashArgOptLists->{"OptList"}},$options)};
    95 
    96     my $self = new BasClas($classifierslist, $inputargs, $hashArgOptLists);
     93    push(@{$hashArgOptLists->{"ArgList"}},@{$arguments});
     94    push(@{$hashArgOptLists->{"OptList"}},$options);
     95
     96    my $self = new BaseClassifier($classifierslist, $inputargs, $hashArgOptLists);
    9797
    9898    if ($self->{'info_only'}) {
Note: See TracChangeset for help on using the changeset viewer.