You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@unomi.apache.org by sh...@apache.org on 2020/01/16 13:26:04 UTC

[unomi] branch master updated: UNOMI-261 Clean up white space.

This is an automated email from the ASF dual-hosted git repository.

shuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/unomi.git


The following commit(s) were added to refs/heads/master by this push:
     new 1c44fe2  UNOMI-261 Clean up white space.
1c44fe2 is described below

commit 1c44fe267d9579690d9e695bf776d750931079c1
Author: Serge Huber <sh...@apache.org>
AuthorDate: Thu Jan 16 14:25:58 2020 +0100

    UNOMI-261 Clean up white space.
    
    Signed-off-by: Serge Huber <sh...@apache.org>
---
 .../org/apache/unomi/services/impl/profiles/ProfileServiceImpl.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/services/src/main/java/org/apache/unomi/services/impl/profiles/ProfileServiceImpl.java b/services/src/main/java/org/apache/unomi/services/impl/profiles/ProfileServiceImpl.java
index f1a28dd..18ffbc3 100644
--- a/services/src/main/java/org/apache/unomi/services/impl/profiles/ProfileServiceImpl.java
+++ b/services/src/main/java/org/apache/unomi/services/impl/profiles/ProfileServiceImpl.java
@@ -1023,10 +1023,10 @@ public class ProfileServiceImpl implements ProfileService, SynchronousBundleList
                         target.put(newEntry.getKey(), newEntry.getValue());
                         changed = true;
                     }
-                } else if(newEntry.getValue().getClass().isEnum()) {
+                } else if (newEntry.getValue().getClass().isEnum()) {
 	            	 target.put(newEntry.getKey(), newEntry.getValue());
 	                 changed = true;
-                }else {
+                } else {
                     if (target.get(newEntry.getKey()) != null) {
                         changed |= merge(target.get(newEntry.getKey()), newEntry.getValue());
                     } else {