]> source.dussan.org Git - redmine.git/commitdiff
remove trailing white-spaces from extra/sample_plugin/app/controllers/example_control...
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sun, 1 Apr 2012 12:41:10 +0000 (12:41 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sun, 1 Apr 2012 12:41:10 +0000 (12:41 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9293 e93f8b46-1217-0410-a6f0-8f06a7374b81

extra/sample_plugin/app/controllers/example_controller.rb

index 8d63206af91ceaeb7ef50efb0d3bdae27c1b76d7..dbc271a1b001b03dc3227a7b20c76c08a9eedc9b 100644 (file)
@@ -1,20 +1,20 @@
 # Sample plugin controller
 class ExampleController < ApplicationController
   unloadable
-  
-  layout 'base'  
+
+  layout 'base'
   before_filter :find_project, :authorize
   menu_item :sample_plugin
-    
+
   def say_hello
     @value = Setting.plugin_sample_plugin['sample_setting']
   end
 
   def say_goodbye
   end
-  
+
 private
-  def find_project   
+  def find_project
     @project=Project.find(params[:id])
   end
 end