Update hutool-core/src/main/java/org/dromara/hutool/core/text/finder/MultiStrFinder.java

This commit is contained in:
阿超 2024-08-03 16:17:19 +00:00 committed by Gitee
parent 86f6b24460
commit da2919ae7b
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -29,7 +29,7 @@ public class MultiStrFinder {
*/
public MultiStrFinder(Collection<String> source){
/** 待匹配的字符串 **/
final Set<String> stringSst = new HashSet<>();
final Set<String> stringSet = new HashSet<>();
/** 所有字符 **/
final Set<Character> charSet = new HashSet<>();