mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
Sonar code smell: Replace the type specification in this constructor call with the diamond operator ("<>")
This commit is contained in:
@@ -74,8 +74,8 @@ public class RequestInfoAssignmentHandler implements TaskListener
|
||||
}
|
||||
|
||||
// Define lists for candidate user(s)/group(s)
|
||||
List<String> candidateUsers = new ArrayList<String>();
|
||||
List<String> candidateGroups = new ArrayList<String>();
|
||||
List<String> candidateUsers = new ArrayList<>();
|
||||
List<String> candidateGroups = new ArrayList<>();
|
||||
|
||||
// Iterate through the list add user(s)/group(s) to the lists
|
||||
for (ActivitiScriptNode activitiScriptNode : usersAndGroups)
|
||||
|
Reference in New Issue
Block a user