Skip to content

Commit f41a310

Browse files
committed
Fix import order
1 parent ac6e7fa commit f41a310

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

web/src/main/java/org/springframework/security/web/jackson2/WebServletJackson2Module.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@
1616

1717
package org.springframework.security.web.jackson2;
1818

19+
import com.fasterxml.jackson.core.Version;
20+
import com.fasterxml.jackson.databind.module.SimpleModule;
21+
import jakarta.servlet.http.Cookie;
22+
1923
import org.springframework.security.jackson2.SecurityJackson2Modules;
2024
import org.springframework.security.web.authentication.WebAuthenticationDetails;
2125
import org.springframework.security.web.authentication.switchuser.SwitchUserGrantedAuthority;
2226
import org.springframework.security.web.savedrequest.DefaultSavedRequest;
2327
import org.springframework.security.web.savedrequest.SavedCookie;
2428

25-
import com.fasterxml.jackson.core.Version;
26-
import com.fasterxml.jackson.databind.module.SimpleModule;
27-
import jakarta.servlet.http.Cookie;
28-
2929
/**
3030
* Jackson module for spring-security-web related to servlet. This module register
3131
* {@link CookieMixin}, {@link SavedCookieMixin}, {@link DefaultSavedRequestMixin} and

0 commit comments

Comments
 (0)