web/lib/django/contrib/gis/db/backend/adaptor.py
changeset 29 cc9b7e14412b
parent 28 b758351d191f
child 30 239f9bcae806
--- a/web/lib/django/contrib/gis/db/backend/adaptor.py	Wed May 19 17:43:59 2010 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-class WKTAdaptor(object):
-    """
-    This provides an adaptor for Geometries sent to the
-    MySQL and Oracle database backends.
-    """
-    def __init__(self, geom):
-        self.wkt = geom.wkt
-        self.srid = geom.srid
-
-    def __eq__(self, other):
-        return self.wkt == other.wkt and self.srid == other.srid
-
-    def __str__(self):
-        return self.wkt
-
-    def prepare_database_save(self, unused):
-        return self