From f1dedfdcf18aa69aff8a533c2bef7baaba1e75a8 Mon Sep 17 00:00:00 2001 From: "cyeh%bluemartini.com" Date: Wed, 28 Feb 2001 23:36:49 +0000 Subject: [PATCH] fix for 69147: reports.cgi still refers to gif (bugzilla 2.11) patch contributed to dave@intrec.com (Dave Miller). remove useless code. git-svn-id: svn://10.0.0.236/trunk@88209 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/reports.cgi | 1 - 1 file changed, 1 deletion(-) diff --git a/mozilla/webtools/bugzilla/reports.cgi b/mozilla/webtools/bugzilla/reports.cgi index e23897c9f30..0f9b370e406 100755 --- a/mozilla/webtools/bugzilla/reports.cgi +++ b/mozilla/webtools/bugzilla/reports.cgi @@ -521,7 +521,6 @@ FIN sub chart_image_type { # what chart type should we be generating? my $testimg = Chart::Lines->new(2,2); - eval '$testimg->gif()'; my $type = $testimg->can('gif') ? "gif" : "png"; undef $testimg;