From: Toshi MARUYAMA Date: Sat, 12 Dec 2020 15:50:14 +0000 (+0000) Subject: remove redundant 'return' from lib/redmine/scm/adapters/bazaar_adapter.rb X-Git-Tag: 4.2.0~175 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=dfc9f20c0ccab676f7cf55419f043e594ed319df;p=redmine.git remove redundant 'return' from lib/redmine/scm/adapters/bazaar_adapter.rb git-svn-id: http://svn.redmine.org/redmine/trunk@20644 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/lib/redmine/scm/adapters/bazaar_adapter.rb b/lib/redmine/scm/adapters/bazaar_adapter.rb index daea57220..bf8ba5fb6 100644 --- a/lib/redmine/scm/adapters/bazaar_adapter.rb +++ b/lib/redmine/scm/adapters/bazaar_adapter.rb @@ -85,7 +85,7 @@ module Redmine end info rescue ScmCommandAborted - return nil + nil end # Returns an Entries collection @@ -124,7 +124,7 @@ module Redmine end entries.sort_by_name rescue ScmCommandAborted - return nil + nil end def revisions(path=nil, identifier_from=nil, identifier_to=nil, options={}) @@ -192,7 +192,7 @@ module Redmine end revisions rescue ScmCommandAborted - return nil + nil end def diff(path, identifier_from, identifier_to=nil) @@ -228,7 +228,7 @@ module Redmine end cat rescue ScmCommandAborted - return nil + nil end def annotate(path, identifier=nil) @@ -256,7 +256,7 @@ module Redmine end blame rescue ScmCommandAborted - return nil + nil end def self.branch_conf_path(path)