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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-03-31 19:49:58 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-03-31 19:49:58 +0400
commit154e54b46e01615bc13f5e3ac2d0f07f7a27464d (patch)
treed6e98c1bb3ce7a79ee074a6d807c78b6f6e1544e /app/models/network
parentd444a23ad6d9c2455a0159435d0c63342aca5edb (diff)
Remove grit logic from app/
Diffstat (limited to 'app/models/network')
-rw-r--r--app/models/network/commit.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/network/commit.rb b/app/models/network/commit.rb
index d0bc61c3bf7..3cd0c015fa0 100644
--- a/app/models/network/commit.rb
+++ b/app/models/network/commit.rb
@@ -8,7 +8,7 @@ module Network
attr_accessor :time, :spaces, :parent_spaces
def initialize(raw_commit, refs)
- @commit = ::Commit.new(raw_commit)
+ @commit = Gitlab::Git::Commit.new(raw_commit)
@time = -1
@spaces = []
@parent_spaces = []