Skip to content

Commit

Permalink
fix: 필드에서 초기화
Browse files Browse the repository at this point in the history
  • Loading branch information
jundonghyuk committed Sep 12, 2023
1 parent 6e633a7 commit b96ad61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/java/com/techcourse/DispatcherServlet.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ public class DispatcherServlet extends HttpServlet {
private static final long serialVersionUID = 1L;
private static final Logger log = LoggerFactory.getLogger(DispatcherServlet.class);

private HandlerMappingRegistry handlerMappingRegistry;
private HandlerAdapterRegistry handlerAdapterRegistry;
private HandlerMappingRegistry handlerMappingRegistry = new HandlerMappingRegistry();
private HandlerAdapterRegistry handlerAdapterRegistry = new HandlerAdapterRegistry();

public DispatcherServlet() {
}
Expand Down

0 comments on commit b96ad61

Please sign in to comment.