Ignore:
Timestamp:
2013-02-26T10:24:31+13:00 (11 years ago)
Author:
jmt12
Message:

Replacing uses of TextFile with TextPlugin... don't know how the former ever worked... maybe it didn't

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gs2-extensions/parallel-building/trunk/src/perllib/plugins/LoremTextPlugin.pm

    r25113 r26939  
    11package LoremTextPlugin;
    22
    3 use TextFile;
     3use TextPlugin;
    44
    55use strict;
     
    88
    99sub BEGIN {
    10     @LoremTextPlugin::ISA = ('TextFile');
     10    @LoremTextPlugin::ISA = ('TextPlugin');
    1111}
    1212
     
    2626
    2727
     28sub get_default_process_exp
     29{
     30  my $self = shift (@_);
     31  return q^(?i)\.te?xt$^;
     32}
     33
    2834sub new
    2935{
     
    3541  push(@{$hashArgOptLists->{"OptList"}},$options);
    3642
    37   my $self = new TextFile($pluginlist, $inputargs, $hashArgOptLists);
     43  my $self = new TextPlugin($pluginlist, $inputargs, $hashArgOptLists);
    3844
    3945  $self->{'lexicon'} = {};
Note: See TracChangeset for help on using the changeset viewer.