mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-26 22:02:41 +00:00
Assert is missing object. It was useless before Spring Framework 6.1, and will not compile on 6.1
This commit is contained in:
parent
339185998a
commit
dd469ac2a0
@ -126,7 +126,7 @@ public class SimpleSavedRequest implements SavedRequest {
|
||||
}
|
||||
|
||||
public void setLocales(List<Locale> locales) {
|
||||
Assert.notNull("locales cannot be null");
|
||||
Assert.notNull(locales, "locales cannot be null");
|
||||
this.locales = locales;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user