We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
在项目里使用了 java List<CookieSignResult> results = new ArrayList<>(); 构建推送的消息,但是 ArrayList是线程不安全的,所以在多cookie的时候会出现漏掉一些信息,或者报错; 在这里改为线程安全的List来解决 List<CookieSignResult> results = Collections.synchronizedList(new ArrayList<>());
java List<CookieSignResult> results = new ArrayList<>();
List<CookieSignResult> results = Collections.synchronizedList(new ArrayList<>());
Sorry, something went wrong.
anduinnn
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: