From 2405a5b6806a8aa019a18c0aa1f577cbcf9abf70 Mon Sep 17 00:00:00 2001 From: Daniel Garnier-Moiroux Date: Fri, 6 Sep 2024 08:36:03 +0200 Subject: [PATCH] Remove CssUtils --- .../security/web/util/CssUtils.java | 165 ------------------ 1 file changed, 165 deletions(-) delete mode 100644 web/src/main/java/org/springframework/security/web/util/CssUtils.java diff --git a/web/src/main/java/org/springframework/security/web/util/CssUtils.java b/web/src/main/java/org/springframework/security/web/util/CssUtils.java deleted file mode 100644 index 9503de5694..0000000000 --- a/web/src/main/java/org/springframework/security/web/util/CssUtils.java +++ /dev/null @@ -1,165 +0,0 @@ -/* - * Copyright 2002-2024 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.springframework.security.web.util; - -/** - * Provides common CSS classes and styles, valid across Servlet and Reactive stacks. - * - * @author Daniel Garnier-Moiroux - * @since 6.4 - */ -public final class CssUtils { - - private CssUtils() { - } - - /** - * Generates the CSS used by all Spring Security default pages, such as login or - * logout pages. - * @return the {@code - """; - } - -}