Skip to content

Commit

Permalink
Remove "defined hash" as it is deprecated.
Browse files Browse the repository at this point in the history
  • Loading branch information
norm committed Jan 14, 2012
1 parent acd083e commit d15f2c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Media/Type/Movie.pm
Expand Up @@ -324,7 +324,7 @@ XML
if ( $title =~ $movie_title ) {
%details = %+;

if ( defined %$hints ) {
if ( %$hints ) {
%details = (
%details,
%$hints,
Expand Down
2 changes: 1 addition & 1 deletion lib/Media/Type/MusicVideo.pm
Expand Up @@ -108,7 +108,7 @@ role Media::Type::MusicVideo {
if ( $title =~ $video_title ) {
%details = %+;

if ( defined %$hints ) {
if ( %$hints ) {
%details = (
%details,
%$hints,
Expand Down

0 comments on commit d15f2c4

Please sign in to comment.