diff options
author | Father Chrysostomos <sprout@cpan.org> | 2010-11-11 05:12:35 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2010-11-11 05:22:49 -0800 |
commit | da9043f571af497192c783c8d4c4ec3bc852894f (patch) | |
tree | 0dd4e7b8137ed3fb5e76a2eac7ea86e4b278ac6c /pp.c | |
parent | 4e2f6caa0df15654db6910ad35367be89fdc235c (diff) | |
download | perl-da9043f571af497192c783c8d4c4ec3bc852894f.tar.gz |
Remove redundant conditional added by e530fb81d
The else is never reached if the assignment in the protasis succeeds.
Diffstat (limited to 'pp.c')
-rw-r--r-- | pp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -901,7 +901,7 @@ PP(pp_undef) mro_isa_changed_in(stash); else if(method_changed) mro_method_changed_in( - stash ? stash : GvSTASH((const GV *)sv) + GvSTASH((const GV *)sv) ); break; |