dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #14285
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 4804: Syntax error fixed.
------------------------------------------------------------
revno: 4804
committer: Jan Henrik Overland <janhenrik.overland@xxxxxxxxx>
branch nick: dhis2
timestamp: Mon 2011-10-03 12:34:39 +0200
message:
Syntax error fixed.
modified:
dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-patient/src/main/java/org/hisp/dhis/patient/action/program/ValidateProgramAttributeAction.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-web/dhis-web-maintenance/dhis-web-maintenance-patient/src/main/java/org/hisp/dhis/patient/action/program/ValidateProgramAttributeAction.java'
--- dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-patient/src/main/java/org/hisp/dhis/patient/action/program/ValidateProgramAttributeAction.java 2011-10-03 09:40:38 +0000
+++ dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-patient/src/main/java/org/hisp/dhis/patient/action/program/ValidateProgramAttributeAction.java 2011-10-03 10:34:39 +0000
@@ -96,7 +96,7 @@
ProgramAttribute match = programAttributeService.getProgramAttributeByName( name );
- if ( match != null && (id == null || match.getId() != id.intValue() )) )
+ if ( match != null && (id == null || match.getId() != id.intValue() ) )
{
message = i18n.getString( "duplicate_names" );