← Back to team overview

dhis2-devs team mailing list archive

[Branch ~dhis2-devs-core/dhis2/trunk] Rev 21713: codestyle

 

------------------------------------------------------------
revno: 21713
committer: Stian Sandvold <stian.sandvold@xxxxxxxxx>
branch nick: dhis2
timestamp: Wed 2016-01-13 14:38:44 +0100
message:
  codestyle
modified:
  dhis-2/dhis-api/src/main/java/org/hisp/dhis/trackedentityattributevalue/TrackedEntityAttributeValue.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-api/src/main/java/org/hisp/dhis/trackedentityattributevalue/TrackedEntityAttributeValue.java'
--- dhis-2/dhis-api/src/main/java/org/hisp/dhis/trackedentityattributevalue/TrackedEntityAttributeValue.java	2016-01-13 13:38:09 +0000
+++ dhis-2/dhis-api/src/main/java/org/hisp/dhis/trackedentityattributevalue/TrackedEntityAttributeValue.java	2016-01-13 13:38:44 +0000
@@ -247,7 +247,8 @@
     {
         this.encryptedValue = encryptedValue;
 
-        if(getAttribute().getConfidential()) {
+        if ( getAttribute().getConfidential() )
+        {
             auditValue = encryptedValue;
             auditValueIsSet = true;
         }
@@ -270,7 +271,8 @@
     {
         this.plainValue = plainValue;
 
-        if(!getAttribute().getConfidential()) {
+        if ( !getAttribute().getConfidential() )
+        {
             auditValue = plainValue;
             auditValueIsSet = true;
         }