修复 sa-token-spring-boot-autoconfig 模块代码警告

This commit is contained in:
click33 2023-05-16 12:40:43 +08:00
parent 9a8917f88e
commit 19bdb6cc66
4 changed files with 13 additions and 13 deletions

View File

@ -24,15 +24,15 @@ package cn.dev33.satoken.error;
public interface SaSpringBootErrorCode {
/** 企图在非 Web 上下文获取 Request、Response 等对象 */
public static final int CODE_20101 = 20101;
int CODE_20101 = 20101;
/** 对象转 JSON 字符串失败 */
public static final int CODE_20103 = 20103;
int CODE_20103 = 20103;
/** JSON 字符串转 Map 失败 */
public static final int CODE_20104 = 20104;
int CODE_20104 = 20104;
/** 默认的 Filter 异常处理函数 */
public static final int CODE_20105 = 20105;
int CODE_20105 = 20105;
}

View File

@ -1,6 +1,3 @@
/**
* Sa-Token 集成 SpringBoot 的各个组件
*/
/*
* Copyright 2020-2099 sa-token.cc
*
@ -16,4 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Sa-Token 集成 SpringBoot 的各个组件
*/
package cn.dev33.satoken;

View File

@ -1,6 +1,3 @@
/**
* Sa-Token-OAuth2 模块自动化配置只有引入了Sa-Token-OAuth2模块后此包下的代码才会开始工作
*/
/*
* Copyright 2020-2099 sa-token.cc
*
@ -16,4 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Sa-Token-OAuth2 模块自动化配置只有引入了Sa-Token-OAuth2模块后此包下的代码才会开始工作
*/
package cn.dev33.satoken.spring.oauth2;

View File

@ -1,6 +1,3 @@
/**
* Sa-Token-SSO 模块自动化配置只有引入了 sa-token-sso 模块后此包下的代码才会开始工作
*/
/*
* Copyright 2020-2099 sa-token.cc
*
@ -16,4 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Sa-Token-SSO 模块自动化配置只有引入了 sa-token-sso 模块后此包下的代码才会开始工作
*/
package cn.dev33.satoken.spring.sso;