aboutsummaryrefslogtreecommitdiffstats
path: root/common/value.go
diff options
context:
space:
mode:
Diffstat (limited to 'common/value.go')
-rw-r--r--common/value.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/common/value.go b/common/value.go
index 722e641b5..c3893d565 100644
--- a/common/value.go
+++ b/common/value.go
@@ -57,14 +57,6 @@ func (val *Value) Len() int {
return len(val.Bytes())
}
-func (val *Value) Raw() interface{} {
- return val.Val
-}
-
-func (val *Value) Interface() interface{} {
- return val.Val
-}
-
func (val *Value) Uint() uint64 {
if Val, ok := val.Val.(uint8); ok {
return uint64(Val)