This file is indexed.

/usr/share/perl5/MooseX/App/Plugin/Fuzzy.pm is in libmoosex-app-perl 1.37-1.

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 MooseX::App::Plugin::Fuzzy;
# ============================================================================

use 5.010;
use utf8;

use namespace::autoclean;
use Moose::Role;

sub plugin_metaroles {
    my ($self,$class) = @_;
    warn "MooseX::App Fuzzy plugin is deprecated. Use Typo instead";
    return;
}

1;