]> source.dussan.org Git - redmine.git/commitdiff
remove spaces inside {} of app/models/wiki_page.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 14 Nov 2020 13:18:02 +0000 (13:18 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 14 Nov 2020 13:18:02 +0000 (13:18 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20367 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/wiki_page.rb

index 02b7044da2a616807e203f3319a20c16a9e4a7e4..7011bdf9799694c8b75b57d982fd86b7f89589c9 100644 (file)
@@ -56,7 +56,7 @@ class WikiPage < ActiveRecord::Base
   after_save :handle_children_move, :delete_selected_attachments
 
   # eager load information about last updates, without loading text
-  scope :with_updated_on, lambda { preload(:content_without_text) }
+  scope :with_updated_on, lambda {preload(:content_without_text)}
 
   # Wiki pages that are protected by default
   DEFAULT_PROTECTED_PAGES = %w(sidebar)
@@ -325,7 +325,8 @@ class WikiAnnotate
       end
       positions.compact!
       # Stop if every line is annotated
-      break unless @lines.detect { |line| line[0].nil? }
+      break unless @lines.detect {|line| line[0].nil?}
+
       current = current.previous
     end
     @lines.each do |line|