Skip to content

Commit

Permalink
fix: 생성자 주입 사용을 위해 엑세스 레벨 변경 #13
Browse files Browse the repository at this point in the history
PRIVATE -> PROTECTED
  • Loading branch information
PgmJun committed May 24, 2023
1 parent 745bd2c commit e56ff6d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import javax.validation.Valid;

@RestController
@RequiredArgsConstructor(access = AccessLevel.PRIVATE)
@RequiredArgsConstructor(access = AccessLevel.PROTECTED)
@RequestMapping("/board")
public class BoardController {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import java.util.Arrays;

@RestController
@RequiredArgsConstructor(access = AccessLevel.PRIVATE)
@RequiredArgsConstructor(access = AccessLevel.PROTECTED)
public class ServerProfileController {

private final Environment env;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import javax.validation.Valid;

@RestController
@RequiredArgsConstructor(access = AccessLevel.PRIVATE)
@RequiredArgsConstructor(access = AccessLevel.PROTECTED)
@RequestMapping("/user")
public class UserController {

Expand Down

0 comments on commit e56ff6d

Please sign in to comment.