diff --git a/src/main/java/edu/cmipt/gcs/controller/UserController.java b/src/main/java/edu/cmipt/gcs/controller/UserController.java index 24f525b..a0f55cc 100644 --- a/src/main/java/edu/cmipt/gcs/controller/UserController.java +++ b/src/main/java/edu/cmipt/gcs/controller/UserController.java @@ -89,7 +89,8 @@ public class UserController { description = "User not found", content = @Content(schema = @Schema(implementation = ErrorVO.class))) }) - public UserVO getUser(@RequestParam("user") String user, @RequestParam("userType") String userType) { + public UserVO getUser( + @RequestParam("user") String user, @RequestParam("userType") String userType) { if (!userType.equals("id") && !userType.equals("username") && !userType.equals("email")) { throw new GenericException(ErrorCodeEnum.MESSAGE_CONVERSION_ERROR); }