From d1a52fd3014b9b5cf84e6b074ce072173d51f8c7 2012-08-22 00:13:31 From: Toshi MARUYAMA Date: 2012-08-22 00:13:31 Subject: [PATCH] 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 c22b81e..19bacc8 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