Skip to content

Commit

Permalink
Removed the layer DUMP property.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdlime authored and geographika committed Mar 16, 2021
1 parent 28faaa1 commit 08f806f
Show file tree
Hide file tree
Showing 4 changed files with 2,006 additions and 2,020 deletions.
1 change: 0 additions & 1 deletion mapcopy.c
Expand Up @@ -1127,7 +1127,6 @@ int msCopyLayer(layerObj *dst, layerObj *src)
}
msCopyHashTable(&dst->validation,&src->validation);

MS_COPYSTELEM(dump);
MS_COPYSTELEM(debug);

/* No need to copy the numprocessing member, as it is incremented by
Expand Down
5 changes: 0 additions & 5 deletions mapfile.c
Expand Up @@ -3641,8 +3641,6 @@ int initLayer(layerObj *layer, mapObj *map)
initHashTable(&(layer->bindvals));
initHashTable(&(layer->validation));

layer->dump = MS_FALSE;

layer->styleitem = NULL;
layer->styleitemindex = -1;

Expand Down Expand Up @@ -4144,9 +4142,6 @@ int loadLayer(layerObj *layer, mapObj *map)
if((layer->debug = getSymbol(3, MS_ON,MS_OFF, MS_NUMBER)) == -1) return(-1);
if(layer->debug == MS_NUMBER) layer->debug = (int) msyynumber;
break;
case(DUMP):
if((layer->dump = getSymbol(2, MS_TRUE,MS_FALSE)) == -1) return(-1);
break;
case(EOF):
msSetError(MS_EOFERR, NULL, "loadLayer()");
return(-1);
Expand Down

0 comments on commit 08f806f

Please sign in to comment.