diff options
author | Florian Pritz <bluewind@xinu.at> | 2018-09-09 14:16:35 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2018-09-09 15:45:11 +0200 |
commit | 97c3b005a3852d1cc89822ef8a8f27aa13ef42df (patch) | |
tree | 502ff61c829461ad152ff437396887c682771b8d /lib/App/BorgRestore/PathTimeTable | |
parent | 2c13ad0e59733d3a7accc8feeeca033704e6588d (diff) | |
download | App-BorgRestore-97c3b005a3852d1cc89822ef8a8f27aa13ef42df.tar.gz App-BorgRestore-97c3b005a3852d1cc89822ef8a8f27aa13ef42df.tar.xz |
Use strictures instead of strict/warnings
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'lib/App/BorgRestore/PathTimeTable')
-rw-r--r-- | lib/App/BorgRestore/PathTimeTable/DB.pm | 3 | ||||
-rw-r--r-- | lib/App/BorgRestore/PathTimeTable/Memory.pm | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/lib/App/BorgRestore/PathTimeTable/DB.pm b/lib/App/BorgRestore/PathTimeTable/DB.pm index 5d07ebc..1a24999 100644 --- a/lib/App/BorgRestore/PathTimeTable/DB.pm +++ b/lib/App/BorgRestore/PathTimeTable/DB.pm @@ -1,6 +1,5 @@ package App::BorgRestore::PathTimeTable::DB; -use strict; -use warnings; +use strictures 2; use Function::Parameters; use Log::Any qw($log); diff --git a/lib/App/BorgRestore/PathTimeTable/Memory.pm b/lib/App/BorgRestore/PathTimeTable/Memory.pm index 012e937..e84c4a4 100644 --- a/lib/App/BorgRestore/PathTimeTable/Memory.pm +++ b/lib/App/BorgRestore/PathTimeTable/Memory.pm @@ -1,7 +1,6 @@ package App::BorgRestore::PathTimeTable::Memory; use v5.14; -use strict; -use warnings; +use strictures 2; use Function::Parameters; |