Changeset 11211 for lang/perl/Punc

Show
Ignore:
Timestamp:
05/06/08 19:32:34 (7 months ago)
Author:
mizzy
Message:

Punc::Util をなくして Punc->context を使うようにした

Location:
lang/perl/Punc/trunk/lib/Punc
Files:
1 removed
1 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/Punc/trunk/lib/Punc/Slave/Module.pm

    r11196 r11211  
    33use strict; 
    44use warnings; 
    5 use Punc::Util; 
    65use Moose; 
    76use Module::Pluggable; 
     
    3635        next unless $default_for; 
    3736        my ( $fact ) = keys %$default_for; 
    38         if ( grep { Punc::Util->fact($fact) =~ /$_/i } @{ $default_for->{$fact} } ) { 
     37        if ( grep { Punc->context->fact($fact) =~ /$_/i } @{ $default_for->{$fact} } ) { 
    3938            $module_to_delegate = $module; 
    4039        }