17 lines
391 B
Perl
17 lines
391 B
Perl
#####################################################################
|
|
#
|
|
# The Perl::Tidy::DevNull class supplies a dummy print method
|
|
#
|
|
#####################################################################
|
|
|
|
package Perl::Tidy::DevNull;
|
|
use strict;
|
|
use warnings;
|
|
our $VERSION = '20210111';
|
|
sub new { my $self = shift; return bless {}, $self }
|
|
sub print { return }
|
|
sub close { return }
|
|
|
|
1;
|
|
|