diff options
| author | Benjamin Culkin <scorpress@gmail.com> | 2024-05-21 17:02:19 -0400 |
|---|---|---|
| committer | Benjamin Culkin <scorpress@gmail.com> | 2024-05-21 17:02:19 -0400 |
| commit | 2fb1a63378290d6ed13cc12c12c08901f6780c2d (patch) | |
| tree | 1fb4cb0e9a4118e7b9f7e50218975bca9c22b8e9 /projects/net.wotonomy.web/src/main/java/net/wotonomy/web/WOResponse.java | |
| parent | 40a9d99496e098562f090fb7ffce9e749011b131 (diff) | |
Update to Jakarta EE
Diffstat (limited to 'projects/net.wotonomy.web/src/main/java/net/wotonomy/web/WOResponse.java')
| -rw-r--r-- | projects/net.wotonomy.web/src/main/java/net/wotonomy/web/WOResponse.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/projects/net.wotonomy.web/src/main/java/net/wotonomy/web/WOResponse.java b/projects/net.wotonomy.web/src/main/java/net/wotonomy/web/WOResponse.java index 6362a03..6e729cb 100644 --- a/projects/net.wotonomy.web/src/main/java/net/wotonomy/web/WOResponse.java +++ b/projects/net.wotonomy.web/src/main/java/net/wotonomy/web/WOResponse.java @@ -22,6 +22,7 @@ import java.text.SimpleDateFormat; import java.util.Date; import java.util.TimeZone; +import jakarta.servlet.http.HttpServletResponse; import net.wotonomy.foundation.NSArray; /** @@ -93,7 +94,7 @@ public class WOResponse extends WOMessage implements WOActionResults { * to "text/html". As far as I can tell, WORequests have no way to set the * content type and therefore must always be of type "text/html". */ - void generateServletResponse(javax.servlet.http.HttpServletResponse response) { + void generateServletResponse(HttpServletResponse response) { if (WOApplication.application().isPageRefreshOnBacktrackEnabled()) { disableClientCaching(); } |
