-
Notifications
You must be signed in to change notification settings - Fork 541
Fix 2478 #3536
New issue
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
base: main
Are you sure you want to change the base?
Fix 2478 #3536
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #3536 +/- ##
============================================
+ Coverage 72.32% 72.97% +0.65%
- Complexity 23180 24253 +1073
============================================
Files 682 682
Lines 90759 93864 +3105
Branches 20582 21850 +1268
============================================
+ Hits 65638 68501 +2863
- Misses 16688 16832 +144
- Partials 8433 8531 +98 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
@@ -911,6 +911,8 @@ static <T> T parseObject( | |||
throw new JSONException(reader.info("input not end")); | |||
} | |||
return object; | |||
} finally { | |||
context.provider.setNameFilter(null); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
如果Context被多个线程同时使用,这里有问题的
我担心在ReaderProvider上增加NameFilter支持,对性能有很大影响 |
这个也仅针对存在NameFilter的情况吧,影响范围还算可控。 |
What this PR does / why we need it?
fix enable serialize and deserialize when using PropertyNamingStrategy
Summary of your change
Please indicate you've done the following: