Skip to content

Commit

Permalink
fix: replace javax with jakarta on imports (woowacourse#500)
Browse files Browse the repository at this point in the history
  • Loading branch information
donghoony authored Sep 3, 2024
1 parent 3095af7 commit 0b698a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;

import javax.servlet.http.HttpServletResponse;
import jakarta.servlet.http.HttpServletResponse;

@Controller
public class GreetingController {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import org.springframework.stereotype.Component;

import javax.annotation.PostConstruct;
import jakarta.annotation.PostConstruct;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;

Expand Down

0 comments on commit 0b698a2

Please sign in to comment.