]> git.openstreetmap.org Git - rails.git/blobdiff - lib/classic_pagination/pagination.rb
Fix Style/NumericPredicate rubocop warnings
[rails.git] / lib / classic_pagination / pagination.rb
index 054b2bb34e080bf9f50c7f2ed4513d8178d85e01..811d09239d0fe5a325e3aca04204d86470434af5 100644 (file)
@@ -398,7 +398,7 @@ module ActionController
         # Sets the window's padding (the number of pages on either side of the
         # window page).
         def padding=(padding)
-          @padding = padding < 0 ? 0 : padding
+          @padding = padding.negative? ? 0 : padding
           # Find the beginning and end pages of the window
           @first = if @paginator.has_page_number?(@page.number - @padding)
                      @paginator[@page.number - @padding]