!1340 refactor(Dict): 将 customKey 方法的访问权限修改为 protected

Merge pull request !1340 from 蒋小小/v5-dev
This commit is contained in:
Looly 2025-05-12 05:12:54 +00:00 committed by Gitee
commit de5e7cc35d
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -653,7 +653,7 @@ public class Dict extends LinkedHashMap<String, Object> implements BasicTypeGett
* @param key KEY
* @return 小写KEY
*/
private String customKey(String key) {
protected String customKey(String key) {
if (this.caseInsensitive && null != key) {
key = key.toLowerCase();
}