[Catalyst-commits] r7582 - Catalyst-Controller-SOAP/1.0/trunk/lib/Catalyst/Controller

drew at dev.catalyst.perl.org drew at dev.catalyst.perl.org
Mon Apr 7 11:56:50 BST 2008


Author: drew
Date: 2008-04-07 11:56:50 +0100 (Mon, 07 Apr 2008)
New Revision: 7582

Modified:
   Catalyst-Controller-SOAP/1.0/trunk/lib/Catalyst/Controller/SOAP.pm
Log:
Fixed bracing style


Modified: Catalyst-Controller-SOAP/1.0/trunk/lib/Catalyst/Controller/SOAP.pm
===================================================================
--- Catalyst-Controller-SOAP/1.0/trunk/lib/Catalyst/Controller/SOAP.pm	2008-04-07 10:52:59 UTC (rev 7581)
+++ Catalyst-Controller-SOAP/1.0/trunk/lib/Catalyst/Controller/SOAP.pm	2008-04-07 10:56:50 UTC (rev 7582)
@@ -59,8 +59,7 @@
                     my $main = shift @{$wsdlfile};
                     $c->log->debug("WSDL: adding main WSDL $main");
                     $self->wsdlobj(XML::Compile::WSDL11->new($main));
-                    foreach my $file (@{$wsdlfile})
-                    {
+                    foreach my $file (@{$wsdlfile}) {
                         $c->log->debug("WSDL: adding additional WSDL $file");
                         $self->wsdlobj->addWSDL($file);
                     }
@@ -70,8 +69,7 @@
                 }
 
                 if (ref $schema eq 'ARRAY') {
-                    foreach my $file (@$schema)
-                    {
+                    foreach my $file (@$schema) {
                         $c->log->debug("WSDL: Import schema $file");
                         $self->wsdlobj->importDefinitions($file);
                     }




More information about the Catalyst-commits mailing list