79557478

Date: 2025-04-05 20:25:09
Score: 2
Natty:
Report link

your "userRepository.save(user)" returns the actual User object and not the "Optional<User>". Wrap it with Optional to match your return type.

return Optional.ofNullable(userRepository.save(user));

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Swapnil M