diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-12-31 18:15:56 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-12-31 18:15:56 +0000 |
commit | 167b4407dd5b2fba815ebbfbfaf6d691189c78da (patch) | |
tree | cddc4e2d8ccff2f1a6807199e587fce31ef4ed51 | |
parent | c429baeeab809c5b2796233c46f836ff02370313 (diff) | |
download | perl-167b4407dd5b2fba815ebbfbfaf6d691189c78da.tar.gz |
Comment away a diagnostic message as noted by Craig A. Berry
(the unexpected message was confusing testing)
p4raw-id: //depot/perl@8287
-rw-r--r-- | ext/Encode/Encode.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Encode/Encode.pm b/ext/Encode/Encode.pm index db471cb059..0486a68c85 100644 --- a/ext/Encode/Encode.pm +++ b/ext/Encode/Encode.pm @@ -378,7 +378,7 @@ sub loadEncoding last unless $type eq '#'; } $class .= ('::'.(($type eq 'E') ? 'Escape' : 'Table')); - warn "Loading $file"; + # warn "Loading $file"; return $class->read($fh,$name,$type); } else |