[Zope-Checkins] CVS: Zope/lib/python/Products/PluginIndexes/KeywordIndex - KeywordIndex.py:1.8

Andreas Jung andreas@digicool.com
Thu, 25 Apr 2002 08:32:43 -0400


Update of /cvs-repository/Zope/lib/python/Products/PluginIndexes/KeywordIndex
In directory cvs.zope.org:/tmp/cvs-serv3152/KeywordIndex

Modified Files:
	KeywordIndex.py 
Log Message:
code cleanup: removed removed SimpleItem as base class, removed
unneeded imports


=== Zope/lib/python/Products/PluginIndexes/KeywordIndex/KeywordIndex.py 1.7 => 1.8 ===
 from BTrees.OOBTree import OOSet, difference
 
-
 from Globals import Persistent, DTMLFile
 from Acquisition import Implicit
-from OFS.History import Historical
-from OFS.SimpleItem import SimpleItem
 
 from Products.PluginIndexes import PluggableIndex 
 from Products.PluginIndexes.common.UnIndex import UnIndex 
 
 _marker = []
 
-class KeywordIndex(UnIndex,Persistent, Implicit,SimpleItem):
+class KeywordIndex(UnIndex,Persistent, Implicit):
 
     __implements__ = (PluggableIndex.PluggableIndexInterface,)