Skip to content

Commit

Permalink
#255 [CHORE] 변수명 소문자 시작 컨벤션
Browse files Browse the repository at this point in the history
  • Loading branch information
yeseul106 committed Jul 1, 2024
1 parent 5482449 commit 9c9966e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ public static EventBridgeSenderRequest of(
String xApiKey, String service, String action,
List<String> userIds, String title, String content, Category category, String deepLink, String webLink
) {
EventBridgeSenderRequestHeader Header = EventBridgeSenderRequestHeader.of(xApiKey, action, service);
EventBridgeSenderRequestBody Body = EventBridgeSenderRequestBody.of(userIds, title, content, category, deepLink,
EventBridgeSenderRequestHeader header = EventBridgeSenderRequestHeader.of(xApiKey, action, service);
EventBridgeSenderRequestBody body = EventBridgeSenderRequestBody.of(userIds, title, content, category, deepLink,
webLink);
return new EventBridgeSenderRequest(Header, Body);
return new EventBridgeSenderRequest(header, body);
}
}

0 comments on commit 9c9966e

Please sign in to comment.