Skip to content

Commit

Permalink
Use import rather than FQDN
Browse files Browse the repository at this point in the history
  • Loading branch information
markt-asf committed Dec 1, 2023
1 parent 5bc57a8 commit 1e313b7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
import jakarta.servlet.AsyncContext;
import jakarta.servlet.AsyncEvent;
import jakarta.servlet.AsyncListener;
import jakarta.servlet.http.HttpServlet;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;

Expand Down Expand Up @@ -90,7 +91,7 @@ private void triggerBrokenPipe(int port) throws IOException, InterruptedExceptio
}


private static class ReproServlet extends jakarta.servlet.http.HttpServlet {
private static class ReproServlet extends HttpServlet {

private static final long serialVersionUID = 1L;
private final EventSource eventSource = new EventSource();
Expand Down

0 comments on commit 1e313b7

Please sign in to comment.