You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by pg...@apache.org on 2006/08/25 10:24:12 UTC

svn commit: r436713 - /perl/Apache-SizeLimit/trunk/lib/Apache/BaseSizeLimit.pm

Author: pgollucci
Date: Fri Aug 25 01:24:11 2006
New Revision: 436713

URL: http://svn.apache.org/viewvc?rev=436713&view=rev
Log:
fix some indentation

Modified:
    perl/Apache-SizeLimit/trunk/lib/Apache/BaseSizeLimit.pm

Modified: perl/Apache-SizeLimit/trunk/lib/Apache/BaseSizeLimit.pm
URL: http://svn.apache.org/viewvc/perl/Apache-SizeLimit/trunk/lib/Apache/BaseSizeLimit.pm?rev=436713&r1=436712&r2=436713&view=diff
==============================================================================
--- perl/Apache-SizeLimit/trunk/lib/Apache/BaseSizeLimit.pm (original)
+++ perl/Apache-SizeLimit/trunk/lib/Apache/BaseSizeLimit.pm Fri Aug 25 01:24:11 2006
@@ -21,19 +21,19 @@
 use Exporter;
 
 use vars qw(
-    $VERSION
-    $REQUEST_COUNT
-    $USE_SMAPS
-
-    $MAX_PROCESS_SIZE
-    $MAX_UNSHARED_SIZE
-    $MIN_SHARE_SIZE
-    $CHECK_EVERY_N_REQUESTS
-    $START_TIME
-
-    @ISA
-    @EXPORT_OK
-);
+            $VERSION
+            $REQUEST_COUNT
+            $USE_SMAPS
+
+            $MAX_PROCESS_SIZE
+            $MAX_UNSHARED_SIZE
+            $MIN_SHARE_SIZE
+            $CHECK_EVERY_N_REQUESTS
+            $START_TIME
+
+            @ISA
+            @EXPORT_OK
+           );
 
 @ISA = qw(Exporter);
 
@@ -76,7 +76,6 @@
 }
 
 sub get_check_interval { return $CHECK_EVERY_N_REQUESTS; }
-
 
 sub set_start_time { $START_TIME ||= time(); }