Skip to content

Commit 9b61637

Browse files
committed
remove space inside parentheses from lib/redmine/scm/adapters/git_adapter.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@20101 e93f8b46-1217-0410-a6f0-8f06a7374b81
1 parent da3b237 commit 9b61637

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/redmine/scm/adapters/git_adapter.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def branches
8787
bran = GitBranch.new(scm_iconv('UTF-8', @path_encoding, branch_rev[2]))
8888
bran.revision = branch_rev[3]
8989
bran.scmid = branch_rev[3]
90-
bran.is_default = ( branch_rev[1] == '*' )
90+
bran.is_default = (branch_rev[1] == '*')
9191
@branches << bran
9292
end
9393
end

0 commit comments

Comments
 (0)