[Zope-CVS] CVS: Products/Ape/lib/apelib/fs - base.py:1.2
Shane Hathaway
shane@zope.com
Sat, 17 May 2003 20:47:32 -0400
Update of /cvs-repository/Products/Ape/lib/apelib/fs
In directory cvs.zope.org:/tmp/cvs-serv27873/fs
Modified Files:
base.py
Log Message:
Removed the checkConnection method because it is not needed. If it is needed later, it will be a method of a different interface.
=== Products/Ape/lib/apelib/fs/base.py 1.1 => 1.2 ===
--- Products/Ape/lib/apelib/fs/base.py:1.1 Tue Apr 29 18:11:50 2003
+++ Products/Ape/lib/apelib/fs/base.py Sat May 17 20:47:00 2003
@@ -30,12 +30,6 @@
def getSchema(self):
return self.schema
- def checkConnection(self, event):
- conn = self.getConnection(event)
- if not IFSConnection.isImplementedBy(conn):
- raise ValueError(
- "%s does not implement IFSConnection" % repr(conn))
-
def getConnection(self, event):
return event.getConnection(self.conn_name)