Skip to content

Commit

Permalink
use the same idiom everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Mar 30, 2015
1 parent db0ee37 commit b4a5e31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Changes
@@ -1,5 +1,5 @@

6.06 2015-03-28
6.06 2015-03-31

6.05 2015-03-24
- Fixed circular require bug in Mojo::Base and Mojo::Util.
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/Util.pm
Expand Up @@ -377,7 +377,7 @@ sub _encoding {

# Supported on Perl 5.14+
sub _global_destruction {
defined(${^GLOBAL_PHASE}) && ${^GLOBAL_PHASE} eq 'DESTRUCT';
defined ${^GLOBAL_PHASE} && ${^GLOBAL_PHASE} eq 'DESTRUCT';
}

sub _header {
Expand Down

0 comments on commit b4a5e31

Please sign in to comment.