Subject: | Duplicate code |
Hi.
In the Token::Magic, there are two conditions:
if ( $c eq '$#$' or $c eq '$#{' ) {
if ( $c =~ /^\$\#\{/ ) {
If I understand correctly, the first condition will handle the second
condition as well, so the second condition is dead code.
Thanks,
Shmuel.