Revision 43378

View differences:

trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.dal/org.gvsig.fmap.dal.file/org.gvsig.fmap.dal.file.shp/src/main/java/org/gvsig/fmap/dal/store/shp/utils/SHPFile2.java
304 304
        case (SHP.POINT2D):
305 305
        case (SHP.POINT3D):
306 306
        case (SHP.POINTM):
307
            auxType = auxType | Geometry.TYPES.POINT;
307
            auxType = Geometry.TYPES.POINT;
308 308

  
309 309
            break;
310 310

  
311 311
        case (SHP.POLYLINE2D):
312 312
        case (SHP.POLYLINE3D):
313 313
        case (SHP.POLYLINEM):
314
            auxType = auxType | Geometry.TYPES.MULTICURVE;
314
            auxType = Geometry.TYPES.MULTILINE;
315 315

  
316 316
            break;
317 317

  
318 318
        case (SHP.POLYGON2D):
319 319
        case (SHP.POLYGON3D):
320 320
        case (SHP.POLYGONM):
321
            auxType = auxType | Geometry.TYPES.MULTISURFACE;
321
            auxType = Geometry.TYPES.MULTIPOLYGON;
322 322

  
323 323
            break;
324 324
        case (SHP.MULTIPOINT2D):
325 325
        case (SHP.MULTIPOINT3D):
326 326
        case (SHP.MULTIPOINTM):
327
            auxType = auxType | Geometry.TYPES.MULTIPOINT;
327
            auxType = Geometry.TYPES.MULTIPOINT;
328 328

  
329 329
            break;
330 330
        }

Also available in: Unified diff