aboutsummaryrefslogtreecommitdiffstats
path: root/common/value.go
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2015-03-20 20:33:11 +0800
committerFelix Lange <fjl@twurst.com>2015-03-20 21:00:26 +0800
commitc161d73d429ef421cdb9c75b743c16d72aa8a89a (patch)
tree266404447d1e2843b347e11892ff393aabd61a23 /common/value.go
parentdcb9614dfec3c8dcaaa47e9fa516528fdc47279b (diff)
downloaddexon-c161d73d429ef421cdb9c75b743c16d72aa8a89a.tar
dexon-c161d73d429ef421cdb9c75b743c16d72aa8a89a.tar.gz
dexon-c161d73d429ef421cdb9c75b743c16d72aa8a89a.tar.bz2
dexon-c161d73d429ef421cdb9c75b743c16d72aa8a89a.tar.lz
dexon-c161d73d429ef421cdb9c75b743c16d72aa8a89a.tar.xz
dexon-c161d73d429ef421cdb9c75b743c16d72aa8a89a.tar.zst
dexon-c161d73d429ef421cdb9c75b743c16d72aa8a89a.zip
common: drop accessors for Value.Val
I don't see why we would need two different accessors for a public field.
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)