File: DevNull.pm

package info (click to toggle)
perltidy 20220613-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,256 kB
  • sloc: perl: 31,994; makefile: 4
file content (16 lines) | stat: -rw-r--r-- 391 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#####################################################################
#
# The Perl::Tidy::DevNull class supplies a dummy print method
#
#####################################################################

package Perl::Tidy::DevNull;
use strict;
use warnings;
our $VERSION = '20220613';
sub new   { my $self = shift; return bless {}, $self }
sub print { return }
sub close { return }

1;