[SCM] libmessage-passing-perl Debian packaging branch, master, updated. debian/0.111-3-14-g44f6e88

Tomas Doran bobtfish at bobtfish.net
Mon May 6 11:57:36 UTC 2013


The following commit has been merged in the master branch:
commit d9edf906716687d434c2f43cdf1706e25bc3aabf
Author: Tomas Doran <bobtfish at bobtfish.net>
Date:   Sat Aug 18 16:31:13 2012 +0100

    Fix spacing

diff --git a/lib/Message/Passing.pm b/lib/Message/Passing.pm
index 5bd1580..d630f9b 100644
--- a/lib/Message/Passing.pm
+++ b/lib/Message/Passing.pm
@@ -51,39 +51,38 @@ sub get_config_from_file {
 
 sub build_chain {
     my $self = shift;
-        message_chain {
-            error_log(
-                %{ $self->error_options },
-                class => $self->error,
-            );
-            output output => (
-                %{ $self->output_options },
-                class => $self->output,
-            );
-            encoder("encoder",
-                %{ $self->encoder_options },
-                class => $self->encoder,
-                output_to => 'output',
-            );
-            filter filter => (
-                %{ $self->filter_options },
-                class => $self->filter,
-                output_to => 'encoder',
-            );
-            decoder("decoder",
-                %{ $self->decoder_options },
-                class => $self->decoder,
-                output_to => 'filter',
-            );
-            input input => (
-                %{ $self->input_options },
-                class => $self->input,
-                output_to => 'decoder',
-            );
-        };
+    message_chain {
+        error_log(
+            %{ $self->error_options },
+            class => $self->error,
+        );
+        output output => (
+            %{ $self->output_options },
+            class => $self->output,
+        );
+        encoder("encoder",
+            %{ $self->encoder_options },
+            class => $self->encoder,
+            output_to => 'output',
+        );
+        filter filter => (
+            %{ $self->filter_options },
+            class => $self->filter,
+            output_to => 'encoder',
+        );
+        decoder("decoder",
+            %{ $self->decoder_options },
+            class => $self->decoder,
+            output_to => 'filter',
+        );
+        input input => (
+            %{ $self->input_options },
+            class => $self->input,
+            output_to => 'decoder',
+        );
+    };
 }
 
-
 1;
 
 =head1 NAME

-- 
libmessage-passing-perl Debian packaging



More information about the Pkg-perl-cvs-commits mailing list