| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -7,7 +7,6 @@ | |||
| 7 | 7 | 'src/blob.cc', | |
| 8 | 8 | 'src/commit.cc', | |
| 9 | 9 | 'src/error.cc', | |
| 10 | - 'src/object.cc', | ||
| 11 | 10 | 'src/oid.cc', | |
| 12 | 11 | 'src/reference.cc', | |
| 13 | 12 | 'src/repo.cc', | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -15,6 +15,7 @@ | |||
| 15 | 15 | #include "git2.h" | |
| 16 | 16 | ||
| 17 | 17 | #include "repo.h" | |
| 18 | + #include "oid.h" | ||
| 18 | 19 | ||
| 19 | 20 | using namespace v8; | |
| 20 | 21 | using namespace node; | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -13,7 +13,8 @@ | |||
| 13 | 13 | ||
| 14 | 14 | #include "git2.h" | |
| 15 | 15 | ||
| 16 | - #include "../include/repo.h" | ||
| 16 | + #include "repo.h" | ||
| 17 | + #include "oid.h" | ||
| 17 | 18 | ||
| 18 | 19 | using namespace node; | |
| 19 | 20 | using namespace v8; | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -14,8 +14,6 @@ | |||
| 14 | 14 | ||
| 15 | 15 | #include "git2.h" | |
| 16 | 16 | ||
| 17 | - #include "object.h" | ||
| 18 | - | ||
| 19 | 17 | using namespace node; | |
| 20 | 18 | using namespace v8; | |
| 21 | 19 | ||
@@ -27,7 +25,6 @@ class GitRepo : public ObjectWrap { | |||
| 27 | 25 | git_repository* GetValue(); | |
| 28 | 26 | void SetValue(git_repository* repo); | |
| 29 | 27 | ||
| 30 | - // Synchronous | ||
| 31 | 28 | void Free(); | |
| 32 | 29 | ||
| 33 | 30 | protected: | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -17,7 +17,6 @@ | |||
| 17 | 17 | #include "repo.h" | |
| 18 | 18 | #include "tree.h" | |
| 19 | 19 | #include "oid.h" | |
| 20 | - #include "object.h" | ||
| 21 | 20 | ||
| 22 | 21 | using namespace v8; | |
| 23 | 22 | using namespace node; | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -14,7 +14,6 @@ exports.blob = require('./blob.js').blob; | |||
| 14 | 14 | exports.repo = require('./repo.js').repo; | |
| 15 | 15 | exports.signature = require('./signature.js').signature; | |
| 16 | 16 | exports.oid = require('./oid.js').oid; | |
| 17 | - exports.object = require('./object.js').object; | ||
| 18 | 17 | exports.reference = require('./reference.js').reference; | |
| 19 | 18 | exports.revwalk = require('./revwalk.js').revwalk; | |
| 20 | 19 | exports.commit = require('./commit.js').commit; | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -16,7 +16,6 @@ | |||
| 16 | 16 | #include "../include/blob.h" | |
| 17 | 17 | #include "../include/repo.h" | |
| 18 | 18 | #include "../include/oid.h" | |
| 19 | - #include "../include/object.h" | ||
| 20 | 19 | #include "../include/commit.h" | |
| 21 | 20 | #include "../include/revwalk.h" | |
| 22 | 21 | #include "../include/tree.h" | |
@@ -33,7 +32,6 @@ extern "C" void init(Handle<v8::Object> target) { | |||
| 33 | 32 | GitSignature::Initialize(target); | |
| 34 | 33 | GitBlob::Initialize(target); | |
| 35 | 34 | GitOid::Initialize(target); | |
| 36 | - GitObject::Initialize(target); | ||
| 37 | 35 | GitRepo::Initialize(target); | |
| 38 | 36 | GitCommit::Initialize(target); | |
| 39 | 37 | GitRevWalk::Initialize(target); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments