mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-07-14 10:34:06 +02:00
Fix Java formatting
This commit is contained in:
+1
-4
@@ -1006,10 +1006,7 @@ public class UserController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
List<UserSummaryDTO> users =
|
List<UserSummaryDTO> users =
|
||||||
source.stream()
|
source.stream().filter(User::isEnabled).map(this::toUserSummaryDTO).toList();
|
||||||
.filter(User::isEnabled)
|
|
||||||
.map(this::toUserSummaryDTO)
|
|
||||||
.toList();
|
|
||||||
|
|
||||||
return ResponseEntity.ok(users);
|
return ResponseEntity.ok(users);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user