D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
cpanel
/
perl5
/
532
/
site_lib
/
Perl
/
Tidy
/
Filename :
DevNull.pm
back
Copy
##################################################################### # # The Perl::Tidy::DevNull class supplies a dummy print method # ##################################################################### package Perl::Tidy::DevNull; use strict; use warnings; our $VERSION = '20210402'; sub new { my $self = shift; return bless {}, $self } sub print { return } sub close { return } 1;