Patch for doubly defined method

Martin Thornquist <[email protected]> Fri, 24 Jan 2003 13:33:49 +0100
Newsgroups gmane.lisp.uncommon-sql
Message-ID <[email protected]>
This method has two identical definitions, I've removed the second:

Index: sql/objects.lisp
===================================================================
RCS file: /cvs/usql/sql/objects.lisp,v
retrieving revision 1.128
diff -u -r1.128 objects.lisp
--- sql/objects.lisp	2003/01/08 19:00:51	1.128
+++ sql/objects.lisp	2003/01/24 12:30:02
@@ -781,10 +781,6 @@
   (progv '(*print-circle* *print-array*) '(t t)
     (prin1-to-string val)))
 
-(defmethod database-output-sql-as-type (type val database)
-  (declare (ignore type database))
-  val)
-
 (defmethod database-output-sql-as-type ((type (eql 'boolean)) val database)
   (declare (ignore database))
   (if val "t" "f"))



Martin
-- 
"An ideal world is left as an exercise to the reader."
                                                 -Paul Graham, On Lisp