=== modified file 'dhis-2/dhis-support/dhis-support-system/src/main/java/org/hisp/dhis/system/deletion/DeletionHandler.java' --- dhis-2/dhis-support/dhis-support-system/src/main/java/org/hisp/dhis/system/deletion/DeletionHandler.java 2011-06-30 08:03:19 +0000 +++ dhis-2/dhis-support/dhis-support-system/src/main/java/org/hisp/dhis/system/deletion/DeletionHandler.java 2011-07-06 07:54:32 +0000 @@ -27,6 +27,7 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +import org.hisp.dhis.caseaggregation.CaseAggregationCondition; import org.hisp.dhis.chart.Chart; import org.hisp.dhis.concept.Concept; import org.hisp.dhis.constant.Constant; @@ -618,4 +619,13 @@ public void deleteConstant( Constant constant ) { } + + public boolean allowDeleteCaseAggregationCondition( CaseAggregationCondition caseAggregationCondition ) + { + return true; + } + + public void deleteCaseAggregationCondition( CaseAggregationCondition caseAggregationCondition ) + { + } }