Remove dead code. (CVS 5601)

FossilOrigin-Name: 6de9c084fc533fbb22af6a4cd3e4e9a461b13876
diff --git a/src/resolve.c b/src/resolve.c
index dbc97da..4d33c1a 100644
--- a/src/resolve.c
+++ b/src/resolve.c
@@ -14,7 +14,7 @@
 ** resolve all identifiers by associating them with a particular
 ** table and column.
 **
-** $Id: resolve.c,v 1.1 2008/08/20 16:35:10 drh Exp $
+** $Id: resolve.c,v 1.2 2008/08/22 17:34:45 drh Exp $
 */
 #include "sqliteInt.h"
 #include <stdlib.h>
@@ -1082,18 +1082,6 @@
   }
   return ExprHasProperty(pExpr, EP_Error);
 }
-int sqlite3ResolveExprListNames( 
-  NameContext *pNC,       /* Namespace to resolve expressions in. */
-  ExprList *pList         /* List of expressions to be analyzed. */
-){
-  int i;
-  struct ExprList_item *pItem;
-  if( pList==0 ) return 0;
-  for(i=pList->nExpr, pItem=pList->a; i>0; i--, pItem++){
-    if( sqlite3ResolveExprNames(pNC, pItem->pExpr) ) return 1;
-  }
-  return 0;
-}
 
 
 /*