From 05aa146fad73c46593240322ad40cd398061c989 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Thu, 9 Jan 2014 07:41:34 +0000 Subject: [PATCH] code format cleanup Watcher model git-svn-id: http://svn.redmine.org/redmine/trunk@12568 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/models/watcher.rb | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app/models/watcher.rb b/app/models/watcher.rb index 3a37aa323..1b887376c 100644 --- a/app/models/watcher.rb +++ b/app/models/watcher.rb @@ -62,11 +62,12 @@ class Watcher < ActiveRecord::Base pruned = 0 where(:user_id => user.id).all.each do |watcher| next if watcher.watchable.nil? - if options.has_key?(:project) - next unless watcher.watchable.respond_to?(:project) && watcher.watchable.project == options[:project] + unless watcher.watchable.respond_to?(:project) && + watcher.watchable.project == options[:project] + next + end end - if watcher.watchable.respond_to?(:visible?) unless watcher.watchable.visible?(user) watcher.destroy