convert file object in filelist object
[findit] / src / file.py
diff --git a/src/file.py b/src/file.py
deleted file mode 100644 (file)
index 94a7746..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/usr/bin/env python
-# -*-coding: utf-8 -*-
-# vim: sw=4 ts=4 expandtab ai
-# pylint: disable-msg=C0301
-
-class File(object):
-    def add(self, fpath, fsize):
-        self.fl_path = fpath
-        self.fl_size = fsize
-    
-    def show(self):
-        self.cur_ui.show(self.fl_path, self.fl_size)
-        
-    def __init__(self, ui):
-        if ui is 'console':
-            from consprint import ConsPrint
-            self.cur_ui = ConsPrint()
-        self.fl_path = None
-        self.fl_size = None