This file is indexed.

/usr/share/perl5/Text/Autoformat/NullHang.pm is in libtext-autoformat-perl 1.740000-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
package Text::Autoformat::NullHang;
$Text::Autoformat::NullHang::VERSION = '1.74';
use 5.006;
use strict;
use warnings;

sub new       { bless {}, $_[0] }
sub stringify { "" }
sub length    { 0 }
sub incr      {}
sub empty     { 1 }
sub signature     { "" }
sub fields { return 0 }
sub field { return "" }
sub val { return "" }

1;