Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[예지니어스] 4단계 - HTTP 웹 서버 리팩토링 미션 제출합니다. #204

Open
wants to merge 13 commits into
base: yejiahn
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
refactor: UrlMapper 인스턴스 변수에 final 키워드 추가
YejiAhn committed Nov 9, 2020
commit ecd47baef229b0c60e0fe560c57ff28c5a8207ba
2 changes: 1 addition & 1 deletion src/main/java/web/application/UrlMapper.java
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@

public class UrlMapper {

private Map<String, Controller> mapper;
private final Map<String, Controller> mapper;

public UrlMapper() {
this.mapper = new HashMap<>();