diff options
author | Alejandro RodrÃguez <alejorro70@gmail.com> | 2017-10-06 19:42:56 -0300 |
---|---|---|
committer | Alejandro RodrÃguez <alejorro70@gmail.com> | 2017-10-12 21:45:16 -0300 |
commit | f72598b659871a3d4e8ef1905918067522ba2a29 (patch) | |
tree | 97e3c6d8311c134a0df4ffa5023b4e43aea45012 /lib/github | |
parent | 9fda629a347cb43d8f5871f101192187fcdeeea2 (diff) | |
download | gitlab-ce-f72598b659871a3d4e8ef1905918067522ba2a29.tar.gz |
Move Gitlab::Diff::LineCode to module Gitlab::Git
Diffstat (limited to 'lib/github')
-rw-r--r-- | lib/github/representation/comment.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/github/representation/comment.rb b/lib/github/representation/comment.rb index 1b5be91461b..b87a11672ed 100644 --- a/lib/github/representation/comment.rb +++ b/lib/github/representation/comment.rb @@ -23,7 +23,7 @@ module Github private def generate_line_code(line) - Gitlab::Diff::LineCode.generate(file_path, line.new_pos, line.old_pos) + Gitlab::Git::DiffLineCode.generate(file_path, line.new_pos, line.old_pos) end def on_diff? |