Bug 13521: Removed superflous semicolon
authorMartin Renvoize <martin.renvoize@ptfs-europe.com>
Tue, 6 Jan 2015 06:48:29 +0000 (06:48 +0000)
committerTomas Cohen Arazi <tomascohen@gmail.com>
Thu, 22 Jan 2015 21:36:05 +0000 (18:36 -0300)
Removed an uneeded semicolon from the end of an 'if' block. This should
not affect operation of the script.

Note: With Bug 13499 we did a non-destructive perltidy, as such we only
affected indenting and whitespace to maintain blame history. However, a
number of minor code issues were also highlighted, in this series of
patches I hope to correct other minor style issues.

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
C4/Auth.pm

index d055d0c..2b64364 100644 (file)
@@ -687,7 +687,7 @@ sub _timeout_syspref {
     # value in days, convert in seconds
     if ( $timeout =~ /(\d+)[dD]/ ) {
         $timeout = $1 * 86400;
-    };
+    }
     return $timeout;
 }