Github user pranjal-goswami commented on a diff in the pull request:

    https://github.com/apache/fineract/pull/376#discussion_r125570163
  
    --- Diff: 
fineract-provider/src/main/java/org/apache/fineract/notification/eventandlistener/NotificationEventListener.java
 ---
    @@ -61,17 +61,7 @@ public void onMessage(Message message, Session session) 
throws JMSException {
                        
                        Long appUserId = notificationData.getActorId();
                        List<Long> userIds = notificationData.getUserIds();
    -                   
    -                   if (notificationData.getOfficeId() != null) {
    -                           List<Long> tempUserIds = new 
ArrayList<>(userIds);
    -                           for (Long userId : tempUserIds) {
    -                                   AppUser appUser = 
appUserRepository.findOne(userId);
    -                                   if 
(!Objects.equals(appUser.getOffice().getId(), notificationData.getOfficeId())) {
    -                                           userIds.remove(userId);
    -                                   }
    -                           }
    -                   }
    -                   
    +                                           
                        if (userIds.contains(appUserId)) {
                                userIds.remove(appUserId);
    --- End diff --
    
    What exactly is this line doing? or what exactly is the method achieving?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to