skipGEOMETRYfromFilter.patch

Antonio Falciano, 01/14/2015 08:31 PM

Download (867 Bytes)

View differences:

org.gvsig.desktop.plugin/org.gvsig.app/org.gvsig.app.mainplugin/src/main/java/org/gvsig/app/gui/filter/FilterDialog.java (copia locale)
359 359
                    (FeatureAttributeDescriptor) attributes.next();
360 360
                Object field = descriptor.getName();
361 361

  
362
                if (field != null) {
362
                if ((field != null) && (field.toString() != "GEOMETRY")) {
363 363
                    jtreeRoot.add(new DefaultMutableTreeNode(field.toString()));
364 364
                }
365 365
            }