Deprecate AppCacheManifestTransformer
This commit deprecates the `AppCacheManifestTransformer` implementations since the appcache feature is being removed from the browsers. Closes gh-25733
This commit is contained in:
parent
078543ce67
commit
93f201a414
|
|
@ -65,7 +65,9 @@ import org.springframework.web.server.ServerWebExchange;
|
|||
* @author Brian Clozel
|
||||
* @since 5.0
|
||||
* @see <a href="https://html.spec.whatwg.org/multipage/browsers.html#offline">HTML5 offline applications spec</a>
|
||||
* @deprecated as of 5.3 since browser support is going away, scheduled for removal in 6.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public class AppCacheManifestTransformer extends ResourceTransformerSupport {
|
||||
|
||||
private static final String MANIFEST_HEADER = "CACHE MANIFEST";
|
||||
|
|
|
|||
|
|
@ -62,7 +62,9 @@ import org.springframework.util.StringUtils;
|
|||
* @author Brian Clozel
|
||||
* @since 4.1
|
||||
* @see <a href="https://html.spec.whatwg.org/multipage/browsers.html#offline">HTML5 offline applications spec</a>
|
||||
* @deprecated as of 5.3 since browser support is going away, scheduled for removal in 6.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public class AppCacheManifestTransformer extends ResourceTransformerSupport {
|
||||
|
||||
private static final String MANIFEST_HEADER = "CACHE MANIFEST";
|
||||
|
|
|
|||
Loading…
Reference in New Issue