[mapserver-commits] r7607 - trunk/mapserver
svn at osgeo.org
svn at osgeo.org
Wed May 21 01:09:35 EDT 2008
Author: sdlime
Date: 2008-05-21 01:09:34 -0400 (Wed, 21 May 2008)
New Revision: 7607
Modified:
trunk/mapserver/mapquery.c
Log:
Removed some left over debugging statements.
Modified: trunk/mapserver/mapquery.c
===================================================================
--- trunk/mapserver/mapquery.c 2008-05-21 05:00:07 UTC (rev 7606)
+++ trunk/mapserver/mapquery.c 2008-05-21 05:09:34 UTC (rev 7607)
@@ -291,8 +291,6 @@
return(MS_FAILURE);
}
- printf("ready to query...\n");
-
/* save any previously defined filter */
if(lp->filter.string) {
old_filtertype = lp->filter.type;
@@ -327,8 +325,6 @@
lp->project = MS_FALSE;
#endif
- printf("search rect: %g,%g %g,%g\n", searchrect.minx,searchrect.miny, searchrect.maxx,searchrect.maxy);
-
status = msLayerWhichShapes(lp, searchrect);
if(status == MS_DONE) { /* no overlap */
msLayerClose(lp);
@@ -351,15 +347,11 @@
while((status = msLayerNextShape(lp, &shape)) == MS_SUCCESS) { /* step through the shapes */
- printf("next shape\n");
-
shape.classindex = msShapeGetClass(lp, &shape, map->scaledenom, classgroup, nclasses );
if(!(lp->template) && ((shape.classindex == -1) || (lp->class[shape.classindex]->status == MS_OFF))) { /* not a valid shape */
msFreeShape(&shape);
continue;
}
-
- printf("next shape (class ok)\n");
if(!(lp->template) && !(lp->class[shape.classindex]->template)) { /* no valid template */
msFreeShape(&shape);
More information about the mapserver-commits
mailing list