projects
/
gruntmaster-daemon.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
95379e4
)
Get rid of safe_can_nodie
author
Marius Gavrilescu
<marius@ieval.ro>
Sun, 8 Feb 2015 12:45:10 +0000
(14:45 +0200)
committer
Marius Gavrilescu
<marius@ieval.ro>
Sun, 8 Feb 2015 12:45:10 +0000
(14:45 +0200)
lib/Gruntmaster/Daemon.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/Gruntmaster/Daemon.pm
b/lib/Gruntmaster/Daemon.pm
index 880c0da49a47c1cf8915f952234b6c2609573e38..4f3360ca420df63f90cb4863e63ef9700c7c5ca6 100644
(file)
--- a/
lib/Gruntmaster/Daemon.pm
+++ b/
lib/Gruntmaster/Daemon.pm
@@
-35,19
+35,13
@@
use constant FORMAT_EXTENSION => {
my $db;
-sub safe_can
_nodie
{
+sub safe_can {
my ($type, $sub, $name) = @_;
return unless $name =~ /^\w+$/s;
my $pkg = __PACKAGE__ . "::${type}::${name}";
eval "require $pkg" or get_logger->warn("Error while requiring $pkg: $@");
- $pkg->can($sub);
-}
-
-sub safe_can {
- my ($type, $sub, $name) = @_;
-
- safe_can_nodie @_ or get_logger->logdie("No such \l$type: '$name'");
+ $pkg->can($sub) or get_logger->logdie("No such \l$type: '$name'");
}
sub process{
This page took
0.020728 seconds
and
4
git commands to generate.