Subject: | Forgotten print() in Object::InsideOut::create_accessors()? |
3.99 version adds a print() call in Object::InsideOut::create_accessors():
--- Object-InsideOut-3.98/lib/Object/InsideOut.pm 2013-10-03 21:34:54.000000000 +0200
+++ Object-InsideOut-3.99/lib/Object/InsideOut.pm 2015-08-22 02:48:44.000000000 +0200
@@ -2780,6 +2780,7 @@
}
}
+ print($code);
# Compile the subroutine(s) in the smallest possible lexical scope
my @errs;
local $SIG{'__WARN__'} = sub { push(@errs, @_); };
It looks like a forgotten debugging code to me. Should the line be removed?