This file is indexed.

/usr/share/perl5/Debian/Debhelper/Sequence/javahelper.pm is in javahelper 0.45ubuntu1.

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
18
19
20
21
# DH Sequence for javahelper.

## no critic (Modules::RequireExplicitPackage)

use warnings;
use strict;
use autodie;

use Debian::Debhelper::Dh_Lib;

insert_before('dh_compress', 'jh_installlibs');
insert_after('jh_installlibs', 'jh_classpath');
insert_after('jh_classpath', 'jh_manifest');
insert_after('jh_manifest', 'jh_exec');
insert_after('jh_exec', 'jh_depends');
insert_before('dh_installdocs', 'jh_installjavadoc');
insert_before('dh_clean', 'jh_clean');
insert_before('dh_auto_build', 'jh_linkjars');
insert_after('dh_auto_build', 'jh_build');

1;