]> source.dussan.org Git - redmine.git/commitdiff
remove trailing white-spaces from lib/redmine/views/builders/structure.rb.
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 1 Sep 2011 02:10:25 +0000 (02:10 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 1 Sep 2011 02:10:25 +0000 (02:10 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6959 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/redmine/views/builders/structure.rb

index 65ba474729848772e221f63fccd2a097986ff06b..06e1769379343e42a717c0d35a7e4e73c44ad9a3 100644 (file)
@@ -1,16 +1,16 @@
 # Redmine - project management software
-# Copyright (C) 2006-2010  Jean-Philippe Lang
+# Copyright (C) 2006-2011  Jean-Philippe Lang
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
 # as published by the Free Software Foundation; either version 2
 # of the License, or (at your option) any later version.
-# 
+#
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
-# 
+#
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
@@ -24,7 +24,7 @@ module Redmine
         def initialize
           @struct = [{}]
         end
-        
+
         def array(tag, options={}, &block)
           @struct << []
           block.call(self)
@@ -32,7 +32,7 @@ module Redmine
           @struct.last[tag] = ret
           @struct.last.merge!(options) if options
         end
-        
+
         def method_missing(sym, *args, &block)
           if args.any?
             if args.first.is_a?(Hash)
@@ -49,7 +49,7 @@ module Redmine
               end
             end
           end
-          
+
           if block
             @struct << (args.first.is_a?(Hash) ? args.first : {})
             block.call(self)
@@ -65,7 +65,7 @@ module Redmine
             end
           end
         end
-        
+
         def output
           raise "Need to implement #{self.class.name}#output"
         end