From 5d7badd3699a455c7496530b911f928219bc249a Mon Sep 17 00:00:00 2001
From: Don Armstrong <don@donarmstrong.com>
Date: Tue, 1 Oct 2013 12:19:27 -0700
Subject: [PATCH] remove useless my $_ in encode_utf8_structure

---
 Debbugs/UTF8.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Debbugs/UTF8.pm b/Debbugs/UTF8.pm
index bc3a0faa..0ad284df 100644
--- a/Debbugs/UTF8.pm
+++ b/Debbugs/UTF8.pm
@@ -68,7 +68,7 @@ our $depth = 0;
 sub encode_utf8_structure {
     ++$depth;
     my @ret;
-    for my $_ (@_) {
+    for $_ (@_) {
 	if (ref($_) eq 'HASH') {
 	    push @ret, {encode_utf8_structure(%{$depth == 1 ? dclone($_):$_})};
 	}
-- 
2.39.5