Ignore:
Timestamp:
2009-02-20T17:05:38+13:00 (15 years ago)
Author:
kjdon
Message:

List renamed to SimpleList

File:
1 edited

Legend:

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

    r18455 r18566  
    2424###########################################################################
    2525
    26 # Same as List classifier but includes all sections of document
     26# Same as SimpleList classifier but includes all sections of document
    2727# (excluding top level) rather than just top level document
    2828# itself
     
    3131package SectionList;
    3232
    33 use List;
     33use SimpleList;
    3434use sorttools;
    3535
     
    3838
    3939sub BEGIN {
    40     @SectionList::ISA = ('List');
     40    @SectionList::ISA = ('SimpleList');
    4141}
    4242
     
    5656    push(@{$hashArgOptLists->{"OptList"}},$options);
    5757
    58     my $self = new List($classifierslist, $inputargs, $hashArgOptLists);
     58    my $self = new SimpleList($classifierslist, $inputargs, $hashArgOptLists);
    5959
    6060    return bless $self, $class;
Note: See TracChangeset for help on using the changeset viewer.