]> git.e2factory.org Git - e2factory.git/commitdiff
result: remove unused todot()
authorTobias Ulmer <tu@emlix.com>
Mon, 31 Oct 2016 13:23:06 +0000 (14:23 +0100)
committerTobias Ulmer <tu@emlix.com>
Wed, 16 Nov 2016 14:41:18 +0000 (15:41 +0100)
Signed-off-by: Tobias Ulmer <tu@emlix.com>
local/result.lua

index da4a4675a678ee0c8ba0c03b6d50c67107445ae1..a4d7b9d25ea5c9cef086f73a9d47aef59c62a809 100644 (file)
@@ -186,13 +186,6 @@ function result.basic_result:attribute_table(flagt)
         self._type, self._name))
 end
 
---- Dot representation
-function result.basic_result:dot(flagt)
-    assert(flagt == nil or type(flagt) == "table")
-    error(err.new("called todot() of result base class, type %s name %s",
-        self._type, self._name))
-end
-
 --------------------------------------------------------------------------------
 --- Result class (standard).
 --------------------------------------------------------------------------------
@@ -575,12 +568,6 @@ function result.result_class:attribute_table(flagt)
     return t
 end
 
-function result.result_class:todot(flagt)
-    assert(flagt == nil or type(flagt) == "table")
-    flagt = flagt or {}
-    error("todot missing implementation")
-end
-
 --------------------------------------------------------------------------------
 -- Result loading and plugin hookup
 --------------------------------------------------------------------------------