summaryrefslogtreecommitdiffstats
path: root/lib/redmine/scm/adapters
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-12-12 15:50:14 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-12-12 15:50:14 +0000
commitdfc9f20c0ccab676f7cf55419f043e594ed319df (patch)
treeda1e9a12ec6e8039b08389118150369b62172168 /lib/redmine/scm/adapters
parent86d05c6314beec17f77600cb1d0c0b2c53fa342f (diff)
downloadredmine-dfc9f20c0ccab676f7cf55419f043e594ed319df.tar.gz
redmine-dfc9f20c0ccab676f7cf55419f043e594ed319df.zip
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
Diffstat (limited to 'lib/redmine/scm/adapters')
-rw-r--r--lib/redmine/scm/adapters/bazaar_adapter.rb10
1 files changed, 5 insertions, 5 deletions
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)