Changeset fc92548d for perl/lib/BarnOwl


Ignore:
Timestamp:
Jun 3, 2009, 11:47:20 AM (15 years ago)
Author:
Nelson Elhage <nelhage@mit.edu>
Branches:
master, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
4f0a2ee
Parents:
bc8275e
Message:
Replace '@ISA' references with 'use base'

'use base' will automatically 'use' the prereq modules, which was
potentially problematic back when that didn't work, but is now exactly
what we want.
Location:
perl/lib/BarnOwl/Style
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • perl/lib/BarnOwl/Style/Basic.pm

    ree183be rfc92548d  
    33
    44package BarnOwl::Style::Basic;
    5 our @ISA=qw(BarnOwl::Style::Default);
     5use lib qw(BarnOwl::Style::Default);
    66
    77sub description {"Compatability alias for the default style";}
  • perl/lib/BarnOwl/Style/OneLine.pm

    ree183be rfc92548d  
    44package BarnOwl::Style::OneLine;
    55# Inherit format_message to dispatch
    6 our @ISA = qw(BarnOwl::Style::Default);
     6use base qw(BarnOwl::Style::Default);
    77
    88use constant BASE_FORMAT => '%s %-13.13s %-11.11s %-12.12s ';
Note: See TracChangeset for help on using the changeset viewer.