-
Notifications
You must be signed in to change notification settings - Fork 26.4k
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
Fix generic type result copy in InjvmInvoker #13351
Conversation
Kudos, SonarCloud Quality Gate passed! |
Codecov Report
@@ Coverage Diff @@
## 3.2 #13351 +/- ##
============================================
- Coverage 69.57% 69.56% -0.01%
Complexity 2 2
============================================
Files 1652 1653 +1
Lines 71608 71623 +15
Branches 10264 10270 +6
============================================
+ Hits 49819 49826 +7
+ Misses 17105 17103 -2
- Partials 4684 4694 +10 see 36 files with indirect coverage changes 📣 Codecov offers a browser extension for seamless coverage viewing on GitHub. Try it in Chrome or Firefox today! |
if (type != null) { | ||
return objectInput.readObject(targetClass, type); | ||
} else { | ||
return objectInput.readObject(targetClass); | ||
} |
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.
The type
parameter does not seem to be used now.
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.
LGTM.
What is the purpose of the change
Brief changelog
Verifying this change
Checklist