bunch of stuff
[gitmo/MooseX-Daemonize.git] / lib / MooseX / Daemonize / Pid.pm
index 7df8070..bcfd3b5 100644 (file)
@@ -3,10 +3,6 @@ use strict;    # because Kwalitee is pedantic
 use Moose;
 use Moose::Util::TypeConstraints;
 
-use overload '""'     => sub { (shift)->pid },
-             '+0'     => sub { (shift)->pid },
-             fallback => 1;
-
 coerce 'MooseX::Daemonize::Pid' 
     => from 'Int' 
         => via { MooseX::Daemonize::Pid->new( pid => $_ ) };