We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb0561b commit 904e3a5Copy full SHA for 904e3a5
1 file changed
include/blob.h
@@ -32,18 +32,12 @@ class GitBlob : public ObjectWrap {
32
git_blob* GetValue();
33
void SetValue(git_blob* blob);
34
35
- int Lookup(git_repository* repo, const git_oid *id);
36
-
37
- int CreateFromFile(git_oid* oid, git_repository* repo, const char* path);
38
- int CreateFromBuffer(git_oid* oid, git_repository* repo, const void* buffer, size_t len);
39
40
protected:
41
GitBlob() {};
42
~GitBlob() {};
43
44
static Handle<Value> New(const Arguments& args);
45
46
- static Handle<Value> CreateFromFile(const Arguments& args);
+ static Handle<Value> Free(const Arguments& args);
47
48
static Handle<Value> Lookup(const Arguments& args);
49
static void LookupWork(uv_work_t* req);
0 commit comments