mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
!1340 refactor(Dict): 将 customKey 方法的访问权限修改为 protected
Merge pull request !1340 from 蒋小小/v5-dev
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
Reference in New Issue
Block a user