Use correct servlet imports

Issue gh-4001
This commit is contained in:
Steve Riesenberg 2022-10-05 16:10:00 -05:00
parent 8b490de08d
commit 521cdfd738
No known key found for this signature in database
GPG Key ID: 5F311AB48A55D521
1 changed files with 2 additions and 2 deletions

View File

@ -20,8 +20,8 @@ import java.security.SecureRandom;
import java.util.Base64;
import java.util.function.Supplier;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import org.springframework.security.crypto.codec.Utf8;
import org.springframework.util.Assert;