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; }