Skip to content

Commit

Permalink
Add use warnings;
Browse files Browse the repository at this point in the history
Since `use strict;` is already there, add this as well to fix another
Kwalitee issue.
  • Loading branch information
zakame committed Jun 30, 2018
1 parent bf15f4f commit 05f30f2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/SVN/Notify.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package SVN::Notify;

use strict;
use warnings;
require 5.006_000;
use constant WIN32 => $^O eq 'MSWin32';
use constant PERL58 => $] > 5.007_000;
Expand Down
1 change: 1 addition & 0 deletions lib/SVN/Notify/Alternative.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package SVN::Notify::Alternative;

use strict;
use warnings;
use SVN::Notify ();

$SVN::Notify::Alternative::VERSION = '2.87';
Expand Down
1 change: 1 addition & 0 deletions lib/SVN/Notify/Filter/Trac.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package SVN::Notify::Filter::Trac;

use strict;
use warnings;
use Text::Trac;
use SVN::Notify;

Expand Down
1 change: 1 addition & 0 deletions lib/SVN/Notify/HTML.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package SVN::Notify::HTML;

use strict;
use warnings;
use HTML::Entities;
use SVN::Notify ();

Expand Down
1 change: 1 addition & 0 deletions lib/SVN/Notify/HTML/ColorDiff.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package SVN::Notify::HTML::ColorDiff;

use strict;
use warnings;
use HTML::Entities;
use SVN::Notify::HTML ();

Expand Down

0 comments on commit 05f30f2

Please sign in to comment.