Pre Merge pull request !1327 from 蓝假儿/v6-dev

This commit is contained in:
蓝假儿 2025-03-25 10:32:56 +00:00 committed by Gitee
commit ad1a8a532d
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -32,9 +32,9 @@ import java.util.Set;
public class BooleanUtil {
/** 表示为真的字符串 */
private static final Set<String> TRUE_SET = SetUtil.of("true", "yes", "y", "t", "ok", "1", "on", "", "", "", "", "");
private static final Set<String> TRUE_SET = SetUtil.of("true", "yes", "y", "Y", "t", "ok", "1", "on", "", "", "", "", "");
/** 表示为假的字符串 */
private static final Set<String> FALSE_SET = SetUtil.of("false", "no", "n", "f", "0", "off", "", "", "", "", "×");
private static final Set<String> FALSE_SET = SetUtil.of("false", "no", "n", "N", "f", "0", "off", "", "", "", "", "×");
/**
* 取相反值