Whitespace
Tomas Doran [Sat, 30 Jun 2012 10:58:07 +0000 (11:58 +0100)]
lib/Catalyst/Authentication/Realm/Compatibility.pm

index 3d188a9..e91ea20 100644 (file)
@@ -6,17 +6,17 @@ use warnings;
 use base qw/Catalyst::Authentication::Realm/;
 
 ## very funky - the problem here is that we can't do real realm initialization
-## but we need a real realm object to function.  So - we kinda fake it - we 
-## create an empty object - 
+## but we need a real realm object to function.  So - we kinda fake it - we
+## create an empty object -
 sub new {
     my ($class, $realmname, $config, $app) = @_;
-    
+
     my $self = { config => $config };
     bless $self, $class;
-    
+
     $self->config->{'use_session'} = $app->config->{'Plugin::Authentication'}{'use_session'} || '1';
     $self->name($realmname);
-    
+
     return $self;
 }