Skip to content
Snippets Groups Projects
Commit 458631c5 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

remove unnecessary Commit.new

parent bbfbff3a
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -12,7 +12,6 @@ class CommitLoadContext < BaseContext
commit = project.repository.commit(params[:id])
 
if commit
commit = Commit.new(commit)
line_notes = project.notes.for_commit_id(commit.id).inline
 
result[:commit] = commit
Loading
Loading
Loading
Loading
@@ -109,9 +109,7 @@ module CommitsHelper
end
 
def commit_to_html commit
if commit.model
escape_javascript(render 'commits/commit', commit: commit)
end
escape_javascript(render 'commits/commit', commit: commit)
end
 
def diff_line_content(line)
Loading
Loading
Loading
Loading
@@ -130,7 +130,7 @@ class Note < ActiveRecord::Base
# override to return commits, which are not active record
def noteable
if for_commit?
Commit.new(project.repository.commit(commit_id))
project.repository.commit(commit_id)
else
super
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment