Revision 46582

View differences:

trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.dal/org.gvsig.fmap.dal.swing/org.gvsig.fmap.dal.swing.impl/src/main/java/org/gvsig/featureform/swing/impl/DefaultJFeaturesForm.java
1096 1096
    }
1097 1097

  
1098 1098
    protected void callUserEvent(String name, Object...args) {
1099
        try {
1099
//        try {
1100 1100
            JDynForm form = this.formset.getForm();
1101
            form.callUserFunction(name, args);
1102
        } catch(NoSuchMethodException ex) {
1103
            LOGGER.debug("Function '"+name+"' not found.", ex);
1104
            // Do nothing
1105
        } catch(Exception ex) {
1106
            LOGGER.warn("Error calling form event '"+name+"'.", ex);
1107
        }
1101
            form.callUserEvent(name, args);
1102
//        } catch(NoSuchMethodException ex) {
1103
//            LOGGER.debug("Function '"+name+"' not found.", ex);
1104
//            // Do nothing
1105
//        } catch(Exception ex) {
1106
//            LOGGER.warn("Error calling form event '"+name+"'.", ex);
1107
//        }
1108 1108
    }
1109 1109
}

Also available in: Unified diff