Whitespace
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Schema / Graph / Edge.pm
index cece2fa..a41d9fe 100644 (file)
@@ -7,12 +7,12 @@ use Class::MakeMethods::Template::Hash (
   scalar => [ qw( type ) ],
   array => [ qw( traversals ) ],
   object => [
-                        'thisfield'    => {class => 'SQL::Translator::Schema::Field'}, #FIXME
-                        'thatfield'    => {class => 'SQL::Translator::Schema::Field'}, #FIXME
-                        'thisnode'     => {class => 'SQL::Translator::Schema::Graph::Node'},
-                        'thatnode'     => {class => 'SQL::Translator::Schema::Graph::Node'},
+          'thisfield'    => {class => 'SQL::Translator::Schema::Field'}, #FIXME
+          'thatfield'    => {class => 'SQL::Translator::Schema::Field'}, #FIXME
+          'thisnode'     => {class => 'SQL::Translator::Schema::Graph::Node'},
+          'thatnode'     => {class => 'SQL::Translator::Schema::Graph::Node'},
 
-                       ],
+         ],
 );
 
 sub flip {
@@ -22,11 +22,11 @@ sub flip {
 #warn "self thatfield: ".$self->thatfield->name;
 
   return SQL::Translator::Schema::Graph::Edge->new( thisfield => $self->thatfield,
-                                                                                                       thatfield => $self->thisfield,
-                                                                                                       thisnode  => $self->thatnode,
-                                                                                                       thatnode  => $self->thisnode,
-                                                                                                       type => $self->type eq 'import' ? 'export' : 'import'
-                                                                                                 );
+                                       thatfield => $self->thisfield,
+                                       thisnode  => $self->thatnode,
+                                       thatnode  => $self->thisnode,
+                                       type => $self->type eq 'import' ? 'export' : 'import'
+                                      );
 }
 
 1;