Skip to content

Commit

Permalink
fix: 코드 스멜 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
greeng00se committed Sep 2, 2023
1 parent c21ccf1 commit fc0d914
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ private ResponseEntity handleRequest(
final RequestHeader requestHeader,
final RequestBody requestBody
) {
LOG.info("request uri: {}", requestLine.getUri());
final String path = requestLine.parseUriWithOutQueryString();
if (path.equals("/login")) {
return login(requestLine, requestHeader, requestBody);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ public class SessionManager {

private static final Map<String, Session> SESSIONS = new HashMap<>();

public SessionManager() {
}

public void add(final Session session) {
SESSIONS.put(session.getId(), session);
}
Expand Down

0 comments on commit fc0d914

Please sign in to comment.