From: Toshi MARUYAMA Date: Wed, 22 Aug 2012 00:13:31 +0000 (+0000) Subject: use Rails3 Active Record syntax in DocumentCategory model X-Git-Tag: 2.1.0~113 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d1a52fd3014b9b5cf84e6b074ce072173d51f8c7;p=redmine.git use Rails3 Active Record syntax in DocumentCategory model git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10228 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/models/document_category.rb b/app/models/document_category.rb index c22b81e5b..19bacc8d8 100644 --- a/app/models/document_category.rb +++ b/app/models/document_category.rb @@ -34,9 +34,7 @@ class DocumentCategory < Enumeration def self.default d = super - if d.nil? - d = find(:first) - end + d = first if d.nil? d end end