Bug 2505 - Add commented use warnings where missing in the C4/ directory
authorDonovan Jones <donovan@catalyst.net.nz>
Fri, 16 Apr 2010 03:42:23 +0000 (15:42 +1200)
committerChris Cormack <chrisc@catalyst.net.nz>
Wed, 21 Apr 2010 08:25:32 +0000 (20:25 +1200)
C4/SIP/xmlparse.pl
C4/tests/Record_test.pl

index 6a0b64e..6496c60 100755 (executable)
@@ -7,6 +7,7 @@
 # in Sip::Configuration.pm
 #
 use strict;
+#use warnings; FIXME - Bug 2505
 use English;
 
 use XML::Simple qw(:strict);
index 9729e32..f7a65ab 100755 (executable)
@@ -19,7 +19,8 @@
 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 #
 #
-use strict; use warnings; #FIXME: turn off warnings before release
+use strict;
+use warnings;
 
 # specify the number of tests
 use Test::More tests => 23;