From b3135ad37a5d7ee0c973291e0277226bea83202f Mon Sep 17 00:00:00 2001 From: teastep Date: Mon, 26 Mar 2007 03:09:19 +0000 Subject: [PATCH] make it a little cleaner git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@5699 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb --- New/Shorewall/Common.pm | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/New/Shorewall/Common.pm b/New/Shorewall/Common.pm index 82c14b766..d5027ca18 100644 --- a/New/Shorewall/Common.pm +++ b/New/Shorewall/Common.pm @@ -184,14 +184,7 @@ sub emit ( $ ) { # Jacket for emit() that produces the same result as 'emit join( "\n", ... )' # sub emitj { - if ( $object ) { - # - # 'compile' as opposed to 'check' - # - for my $line ( @_ ) { - emit $line; - } - } + emit join ( "\n", @_ ) if $object; }