1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: Remove unnecessary Dumper() callIndex: libgtk3-simplelist-perl/lib/Gtk3/SimpleList.pm
Origin: vendor
Forwarded: no
Author: Jeffrey Ratcliffe <jjr@debian.org>
Reviewed-by: gregor herrmann <gregoa@debian.org>
Last-Update: 2018-12-22
--- a/lib/Gtk3/SimpleList.pm
+++ b/lib/Gtk3/SimpleList.pm
@@ -171,7 +171,6 @@
# but all the indices will be squashed into one array... so, ah,
# don't use this for TreeStores!
my ($indices) = $selection->get_selected_rows;
- use Data::Dumper; warn Dumper $indices;
map { $_->get_indices } @$indices;
}
|