summaryrefslogtreecommitdiff
path: root/pp.c
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2010-11-11 05:12:35 -0800
committerFather Chrysostomos <sprout@cpan.org>2010-11-11 05:22:49 -0800
commitda9043f571af497192c783c8d4c4ec3bc852894f (patch)
tree0dd4e7b8137ed3fb5e76a2eac7ea86e4b278ac6c /pp.c
parent4e2f6caa0df15654db6910ad35367be89fdc235c (diff)
downloadperl-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp.c b/pp.c
index 4ae130be73..9e762d5d93 100644
--- a/pp.c
+++ b/pp.c
@@ -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;