SEC-3120: Reference hsts() -> httpStrictTransportSecurity()

This commit is contained in:
Rob Winch 2015-10-29 15:10:16 -05:00
parent edd2751ff1
commit 0ecdd0e856

View File

@ -3520,7 +3520,7 @@ protected void configure(HttpSecurity http) throws Exception {
.frameOptions()
.sameOrigin()
.and()
.hsts().disable();
.httpStrictTransportSecurity().disable();
}
}
----