summaryrefslogtreecommitdiff
path: root/odb.go
diff options
context:
space:
mode:
authorVicent Marti <[email protected]>2013-04-16 23:04:35 +0200
committerVicent Marti <[email protected]>2013-04-16 23:04:35 +0200
commitd190d8a6b3717402744902d060be57195f27d604 (patch)
treebbaa99449afa98545eb7833831d085e5875377dd /odb.go
parentc7286515b83bae368245b5cf2dc92971e16b21ff (diff)
Take 2 on polymorphism
Diffstat (limited to 'odb.go')
-rw-r--r--odb.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/odb.go b/odb.go
index bf17171..37d9fcd 100644
--- a/odb.go
+++ b/odb.go
@@ -12,15 +12,6 @@ import (
"runtime"
)
-var (
- OBJ_ANY = C.GIT_OBJ_ANY
- OBJ_BAD = C.GIT_OBJ_BAD
- OBJ_COMMIT = C.GIT_OBJ_COMMIT
- OBJ_TREE = C.GIT_OBJ_TREE
- OBJ_BLOB = C.GIT_OBJ_BLOB
- OBJ_TAG = C.GIT_OBJ_TAG
-)
-
type Odb struct {
ptr *C.git_odb
}