From: Toshi MARUYAMA Date: Fri, 31 Jan 2014 09:38:43 +0000 (+0000) Subject: fix source indent of Redmine::Scm::Adapters::AbstractAdapter#without_trailling_slash X-Git-Tag: 2.5.0~159 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7c56ed600411750c5de8138495fb81405c66c194;p=redmine.git fix source indent of Redmine::Scm::Adapters::AbstractAdapter#without_trailling_slash git-svn-id: http://svn.redmine.org/redmine/trunk@12741 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/lib/redmine/scm/adapters/abstract_adapter.rb b/lib/redmine/scm/adapters/abstract_adapter.rb index 28fdde30b..ec168bf84 100644 --- a/lib/redmine/scm/adapters/abstract_adapter.rb +++ b/lib/redmine/scm/adapters/abstract_adapter.rb @@ -182,7 +182,7 @@ module Redmine def without_trailling_slash(path) path ||= '' (path[-1,1] == "/") ? path[0..-2] : path - end + end def shell_quote(str) self.class.shell_quote(str)