Revision 45768

View differences:

trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.dal/org.gvsig.fmap.dal.impl/src/main/java/org/gvsig/fmap/dal/feature/impl/DefaultFeatureAttributeDescriptor.java
1011 1011

  
1012 1012
    @Override
1013 1013
    public boolean isAvailableValuesCalculated() {
1014
        return true; //this.availableValuesMethod != null;
1014
        if (this.availableValuesMethod != null) {
1015
            return true;
1016
        }
1017
        if (!ExpressionUtils.isEmpty(this.availableValuesFilter)) {
1018
            return true;
1019
        }
1020
        return false;
1015 1021
    }
1016 1022

  
1017 1023
    @Override

Also available in: Unified diff