]> source.dussan.org Git - redmine.git/commitdiff
Use spaces instead of tabs.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 9 Feb 2014 11:58:19 +0000 (11:58 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 9 Feb 2014 11:58:19 +0000 (11:58 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@12867 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/project.rb

index c5392d7b09dd6ce546cf9048c31b503b2c84a5a6..fd9d647bb73963df5de46ed1511657f11ce92681 100644 (file)
@@ -622,14 +622,14 @@ class Project < ActiveRecord::Base
     end
   end
 
-       # Return the enabled module with the given name
-       # or nil if the module is not enabled for the project
+  # Return the enabled module with the given name
+  # or nil if the module is not enabled for the project
   def enabled_module(name)
     name = name.to_s
     enabled_modules.detect {|m| m.name == name}
   end
 
-       # Return true if the module with the given name is enabled
+  # Return true if the module with the given name is enabled
   def module_enabled?(name)
     enabled_module(name).present?
   end