Coverity Scan issues fix
[portal.git] / portal-BE / src / main / java / org / onap / portal / service / fn / FnUserService.java
index 8c5806e..cd966fb 100644 (file)
@@ -89,7 +89,6 @@ public class FnUserService implements UserDetailsService {
        }
 
        List<FnUser> getUsersByOrgIds(final List<String> orgIds){
-              String ids = "(" + orgIds.stream().map(s -> "'" + s + "'").collect(Collectors.joining()) + ")";
               return fnUserDao.getUsersByOrgIds(orgIds).orElse(new ArrayList<>());
        }