diff options
author | matteo <matteo.pasotti@gmail.com> | 2014-10-05 23:29:43 +0300 |
---|---|---|
committer | matteo <matteo.pasotti@gmail.com> | 2014-10-05 23:29:43 +0300 |
commit | f4ac24e95ef87873b9ba8d05d359a60db0166913 (patch) | |
tree | 9be4cf19f56fdc71875791925e68ebf5d0064c05 /lib/AdminPanel/Module | |
parent | 5b42f3332afcc5f42e9c028113af0ad65a5acf23 (diff) | |
download | manatools-f4ac24e95ef87873b9ba8d05d359a60db0166913.tar manatools-f4ac24e95ef87873b9ba8d05d359a60db0166913.tar.gz manatools-f4ac24e95ef87873b9ba8d05d359a60db0166913.tar.bz2 manatools-f4ac24e95ef87873b9ba8d05d359a60db0166913.tar.xz manatools-f4ac24e95ef87873b9ba8d05d359a60db0166913.zip |
dropped use strict in favor of use Moose
Diffstat (limited to 'lib/AdminPanel/Module')
-rw-r--r-- | lib/AdminPanel/Module/Clock.pm | 1 | ||||
-rw-r--r-- | lib/AdminPanel/Module/LogViewer.pm | 1 | ||||
-rw-r--r-- | lib/AdminPanel/Module/Services.pm | 1 | ||||
-rw-r--r-- | lib/AdminPanel/Module/Users.pm | 3 |
4 files changed, 1 insertions, 5 deletions
diff --git a/lib/AdminPanel/Module/Clock.pm b/lib/AdminPanel/Module/Clock.pm index b96f1c70..5a75f328 100644 --- a/lib/AdminPanel/Module/Clock.pm +++ b/lib/AdminPanel/Module/Clock.pm @@ -53,7 +53,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA use Moose; use diagnostics; -use strict; use AdminPanel::Shared::GUI; use AdminPanel::Shared::Locales; diff --git a/lib/AdminPanel/Module/LogViewer.pm b/lib/AdminPanel/Module/LogViewer.pm index 28c0d67a..a91a1642 100644 --- a/lib/AdminPanel/Module/LogViewer.pm +++ b/lib/AdminPanel/Module/LogViewer.pm @@ -51,7 +51,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA use Moose; use diagnostics; -use strict; use open OUT => ':utf8'; use AdminPanel::Shared::GUI; diff --git a/lib/AdminPanel/Module/Services.pm b/lib/AdminPanel/Module/Services.pm index 006ca49d..4704c802 100644 --- a/lib/AdminPanel/Module/Services.pm +++ b/lib/AdminPanel/Module/Services.pm @@ -57,7 +57,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA use Moose; -use strict; use English; use MDK::Common::String qw(formatAlaTeX); diff --git a/lib/AdminPanel/Module/Users.pm b/lib/AdminPanel/Module/Users.pm index a3210ef2..753b79e5 100644 --- a/lib/AdminPanel/Module/Users.pm +++ b/lib/AdminPanel/Module/Users.pm @@ -66,8 +66,8 @@ our $VERSION = '1.0.0'; ## ############################################### +use Moose; -use strict; use POSIX qw(ceil); use Config::Auto; use File::ShareDir ':ALL'; @@ -83,7 +83,6 @@ use AdminPanel::Shared::Locales; use AdminPanel::Shared::Users; use MDK::Common::DataStructure qw(member); -use Moose; extends qw( AdminPanel::Module ); has '+icon' => ( |