Files
GseTDDUebungKCLR/database/perl/vendor/lib/Perl/Tidy/DevNull.pm
Riley Schneider b732d8d4b5 Initial Commit
2025-12-03 16:38:10 +01:00

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;