Skip to content
This repository has been archived by the owner on Feb 19, 2022. It is now read-only.

Commit

Permalink
Add missing use statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien "_FrnchFrgg_" RIVAUD committed Aug 11, 2016
1 parent 9d53250 commit 32f62ca
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions AudioGroupCheck.pm
Expand Up @@ -17,6 +17,7 @@
# If not, see <http://www.gnu.org/licenses/>.
package AudioGroupCheck;

use Check;
use base qw(Check);

sub new
Expand Down
1 change: 1 addition & 0 deletions BackgroundCheck.pm
Expand Up @@ -17,6 +17,7 @@
# If not, see <http://www.gnu.org/licenses/>.
package BackgroundCheck;

use Check;
use base qw(Check);

sub new
Expand Down
1 change: 1 addition & 0 deletions GovernorCheck.pm
Expand Up @@ -17,6 +17,7 @@
# If not, see <http://www.gnu.org/licenses/>.
package GovernorCheck;

use Check;
use base qw(Check);

sub new
Expand Down
1 change: 1 addition & 0 deletions HighResTimersCheck.pm
Expand Up @@ -17,6 +17,7 @@
# If not, see <http://www.gnu.org/licenses/>.
package HighResTimersCheck;

use KernelConfigCheck;
use base qw(KernelConfigCheck);

sub new
Expand Down
1 change: 1 addition & 0 deletions HpetCheck.pm
Expand Up @@ -17,6 +17,7 @@
# If not, see <http://www.gnu.org/licenses/>.
package HpetCheck;

use Check;
use base qw(Check);

sub new
Expand Down
1 change: 1 addition & 0 deletions Hz1000Check.pm
Expand Up @@ -17,6 +17,7 @@
# If not, see <http://www.gnu.org/licenses/>.
package Hz1000Check;

use KernelConfigCheck;
use base qw(KernelConfigCheck);

sub new
Expand Down
1 change: 1 addition & 0 deletions KernelConfigCheck.pm
Expand Up @@ -17,6 +17,7 @@
# If not, see <http://www.gnu.org/licenses/>.
package KernelConfigCheck;

use Check;
use base qw(Check);

sub new
Expand Down
1 change: 1 addition & 0 deletions MultiAudioCheck.pm
Expand Up @@ -17,6 +17,7 @@
# If not, see <http://www.gnu.org/licenses/>.
package MultiAudioCheck;

use Check;
use base qw(Check);

sub new
Expand Down
1 change: 1 addition & 0 deletions NoAtimeCheck.pm
Expand Up @@ -17,6 +17,7 @@
# If not, see <http://www.gnu.org/licenses/>.
package NoAtimeCheck;

use Check;
use base qw(Check);

sub new
Expand Down
1 change: 1 addition & 0 deletions NoHzCheck.pm
Expand Up @@ -17,6 +17,7 @@
# If not, see <http://www.gnu.org/licenses/>.
package NoHzCheck;

use KernelConfigCheck;
use base qw(KernelConfigCheck);

sub new
Expand Down
1 change: 1 addition & 0 deletions PreemptRtCheck.pm
Expand Up @@ -17,6 +17,7 @@
# If not, see <http://www.gnu.org/licenses/>.
package PreemptRtCheck;

use KernelConfigCheck;
use base qw(KernelConfigCheck);

sub new
Expand Down
1 change: 1 addition & 0 deletions RootCheck.pm
Expand Up @@ -17,6 +17,7 @@
# If not, see <http://www.gnu.org/licenses/>.
package RootCheck;

use Check;
use base qw(Check);

sub new
Expand Down
1 change: 1 addition & 0 deletions RtcCheck.pm
Expand Up @@ -17,6 +17,7 @@
# If not, see <http://www.gnu.org/licenses/>.
package RtcCheck;

use Check;
use base qw(Check);

sub new
Expand Down
1 change: 1 addition & 0 deletions RtprioCheck.pm
Expand Up @@ -17,6 +17,7 @@
# If not, see <http://www.gnu.org/licenses/>.
package RtprioCheck;

use Check;
use base qw(Check);

sub new
Expand Down
1 change: 1 addition & 0 deletions SwappinessCheck.pm
Expand Up @@ -17,6 +17,7 @@
# If not, see <http://www.gnu.org/licenses/>.
package SwappinessCheck;

use Check;
use base qw(Check);

sub new
Expand Down
1 change: 1 addition & 0 deletions SysCtlCheck.pm
Expand Up @@ -17,6 +17,7 @@
# If not, see <http://www.gnu.org/licenses/>.
package BackgroundCheck;

use Check;
use base qw(Check);

sub new
Expand Down
1 change: 1 addition & 0 deletions WatchesCheck.pm
Expand Up @@ -17,6 +17,7 @@
# If not, see <http://www.gnu.org/licenses/>.
package WatchesCheck;

use Check;
use base qw(Check);

sub new
Expand Down

0 comments on commit 32f62ca

Please sign in to comment.