We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7110dda commit af1d2e7Copy full SHA for af1d2e7
src/main/java/me/itzg/helpers/users/ManageUsersCommand.java
@@ -118,7 +118,7 @@ public Integer call() throws Exception {
118
}
119
120
private void processJavaUserIdList(SharedFetch sharedFetch, List<String> inputs) throws IOException {
121
- List<UserDef> userDefs = inputs.stream().map((String input) -> {return new UserDef(input);}).collect(Collectors.toList());
+ List<UserDef> userDefs = inputs.stream().map(input -> new UserDef(input)).collect(Collectors.toList());
122
if (usesTextUserList()) {
123
verifyNotUuids(userDefs);
124
0 commit comments