diff --git a/repl/repl.go b/repl/repl.go index b1eeeae..0b253ac 100644 --- a/repl/repl.go +++ b/repl/repl.go @@ -91,10 +91,6 @@ type FNode struct { Host *chotki.Chotki } -func (fn *FNode) findType() { - // db -} - func (fn *FNode) ID() rdx.ID { return fn.Id } @@ -120,10 +116,6 @@ type INode struct { Host *chotki.Chotki } -func (fn *INode) findType() { - // db -} - func (fn *INode) ID() rdx.ID { return fn.Id } @@ -149,10 +141,6 @@ type RNode struct { Host *chotki.Chotki } -func (fn *RNode) findType() { - // db -} - func (fn *RNode) ID() rdx.ID { return fn.Id } @@ -178,10 +166,6 @@ type SNode struct { Host *chotki.Chotki } -func (fn *SNode) findType() { - // db -} - func (fn *SNode) ID() rdx.ID { return fn.Id } @@ -207,10 +191,6 @@ type TNode struct { Host *chotki.Chotki } -func (fn *TNode) findType() { - // db -} - func (fn *TNode) ID() rdx.ID { return fn.Id } @@ -396,5 +376,4 @@ func main() { id, err = repl.REPL() } - return }