Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix obsolete variable deprecations
  • Loading branch information
lizmat committed Jun 16, 2014
1 parent 09a1674 commit ccc5193
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/Deprecations.pm
Expand Up @@ -46,8 +46,8 @@ class Deprecation {

submethod BUILD (:$!name, :$!value, :$!instead) {}

method Str { DEPRECATED( $!instead, :up(2), :what($!name) ); $!value }
method gist { DEPRECATED( $!instead, :up(2), :what($!name) ); $!value }
method Str { DEPRECATED( $!instead, :up(3), :what($!name) ); $!value }
method gist { DEPRECATED( $!instead, :up(3), :what($!name) ); $!value }
}

# system variable deprecations
Expand Down

0 comments on commit ccc5193

Please sign in to comment.