Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bitbucket_server/representation/pull_request_comment.rb')
-rw-r--r--lib/bitbucket_server/representation/pull_request_comment.rb19
1 files changed, 9 insertions, 10 deletions
diff --git a/lib/bitbucket_server/representation/pull_request_comment.rb b/lib/bitbucket_server/representation/pull_request_comment.rb
index 3763ba13816..c7d08e604fd 100644
--- a/lib/bitbucket_server/representation/pull_request_comment.rb
+++ b/lib/bitbucket_server/representation/pull_request_comment.rb
@@ -35,7 +35,7 @@ module BitbucketServer
end
def added?
- line_type == 'ADDED'
+ line_type == 'ADDED'
end
def removed?
@@ -67,17 +67,16 @@ module BitbucketServer
end
def line_position
- @line_position ||=
- diff_hunks.each do |hunk|
- segments = hunk.fetch('segments', [])
- segments.each do |segment|
- lines = segment.fetch('lines', [])
- lines.each do |line|
- if line['commentIds']&.include?(id)
- return [line['source'], line['destination']]
- end
+ @line_position ||= diff_hunks.each do |hunk|
+ segments = hunk.fetch('segments', [])
+ segments.each do |segment|
+ lines = segment.fetch('lines', [])
+ lines.each do |line|
+ if line['commentIds']&.include?(id)
+ return [line['source'], line['destination']]
end
end
+ end
end
end