cleaning master
[findit] / src / resultlist.py
diff --git a/src/resultlist.py b/src/resultlist.py
deleted file mode 100755 (executable)
index 6e20519..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env python
-# -*-coding: utf-8 -*-
-# vim: sw=4 ts=4 expandtab ai
-# pylint: disable-msg=C0301
-
-class ResultList(object):
-
-    def __init__(self):
-        self.rlist = []
-
-    def add(self, rproperties):
-        self.rlist.append(rproperties)
-
-    def show(self, out_ui):
-        for rproperties in self.rlist:
-            out_ui.show(rproperties)