dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #29143
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 14672: DeletionHandler, missing method
------------------------------------------------------------
revno: 14672
committer: Lars Helge Øverland <larshelge@xxxxxxxxx>
branch nick: dhis2
timestamp: Fri 2014-04-04 18:59:23 +0200
message:
DeletionHandler, missing method
modified:
dhis-2/dhis-support/dhis-support-system/src/main/java/org/hisp/dhis/system/deletion/DeletionHandler.java
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== 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 2014-04-04 15:58:13 +0000
+++ dhis-2/dhis-support/dhis-support-system/src/main/java/org/hisp/dhis/system/deletion/DeletionHandler.java 2014-04-04 16:59:23 +0000
@@ -629,7 +629,16 @@
public void deleteProgramValidation( ProgramValidation programValidation )
{
}
-
+
+ public void deleteProgramIndicator( ProgramIndicator programIndicator )
+ {
+ }
+
+ public String allowDeleteProgramIndicator( ProgramIndicator programIndicator )
+ {
+ return null;
+ }
+
public String allowDeleteValidationCriteria( ValidationCriteria validationCriteria )
{
return null;
@@ -755,13 +764,4 @@
{
return null;
}
-
- public void deleteProgramIndicator( ProgramIndicator programIndicator )
- {
- }
-
- public String allowProgramIndicator( ProgramIndicator programIndicator )
- {
- return null;
- }
}