[#ISSUE 9733] return origin key if value is null in StringPool.get() (#9798)
This commit is contained in:
parent
aa6ce2eadf
commit
5ac56885a1
@ -55,7 +55,7 @@ public class StringPool {
|
||||
value = GROUP_KEY_CACHE.get(key);
|
||||
}
|
||||
|
||||
return value;
|
||||
return value == null ? key : value;
|
||||
}
|
||||
|
||||
public static long size() {
|
||||
|
Loading…
Reference in New Issue
Block a user