From 804a4e3794370eda33cd8c67f9d94c93bfc103cd Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Thu, 1 Sep 2011 02:10:25 +0000 Subject: [PATCH] remove trailing white-spaces from lib/redmine/views/builders/structure.rb. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6959 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- lib/redmine/views/builders/structure.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/redmine/views/builders/structure.rb b/lib/redmine/views/builders/structure.rb index 65ba47472..06e176937 100644 --- a/lib/redmine/views/builders/structure.rb +++ b/lib/redmine/views/builders/structure.rb @@ -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 -- 2.39.5