Log Message: |
AttributeTypeFilter NO_GEOMETRY had to be adapted to use the new GT2.6 attribute descriptors
/**
* Standard-Filter, der {@linkplain GeometryDescriptor
* Geometrie-Attribute} ausblendet.
*/
public static final AttributeTypeFilter NO_GEOMETRY = new AttributeTypeFilter() {
public boolean accept(AttributeDescriptor desciptor, int idx) {
return !(desciptor instanceof GeometryDescriptor);
}
};
|