Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
045587e0
Commit
045587e0
authored
Mar 08, 2021
by
Robert May
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reduce instantiations when building blame
parent
1ccbd72f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
lib/gitlab/blame.rb
lib/gitlab/blame.rb
+7
-5
No files found.
lib/gitlab/blame.rb
View file @
045587e0
...
...
@@ -19,16 +19,18 @@ module Gitlab
commit
=
Commit
.
new
(
commit
,
project
)
commit
.
lazy_author
# preload author
sha
=
commit
.
sha
if
prev_sha
!=
sha
if
prev_sha
!=
commit
.
sha
groups
<<
current_group
if
current_group
current_group
=
{
commit:
commit
,
lines:
[]
}
end
line
=
highlighted_lines
[
i
].
html_safe
if
highlight
current_group
[
:lines
]
<<
line
if
highlight
current_group
[
:lines
]
<<
highlighted_lines
[
i
].
html_safe
else
current_group
[
:lines
]
<<
line
end
prev_sha
=
sha
prev_sha
=
commit
.
sha
i
+=
1
end
groups
<<
current_group
if
current_group
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment