Skip to content

Commit

Permalink
Fixes RT#92227 (Moose enum warnings)
Browse files Browse the repository at this point in the history
  • Loading branch information
zoffixznet committed Jan 21, 2014
1 parent b0a80a3 commit 3bca7f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/AnyEvent/Subprocess/Types.pm
Expand Up @@ -36,7 +36,7 @@ coerce SubprocessCode, from ArrayRef[Str], via {
subtype CodeList, as ArrayRef[CodeRef];
coerce CodeList, from CodeRef, via { [$_] };

enum WhenToCallBack, qw/Readable Line/;
enum WhenToCallBack, [qw/Readable Line/];

1;

Expand Down

1 comment on commit 3bca7f9

@cono
Copy link

@cono cono commented on 3bca7f9 Mar 31, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please, release this fix to cpan :)
Really annoying warnings.

Please sign in to comment.