-
-
Notifications
You must be signed in to change notification settings - Fork 86
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
Remove duplicated null and body checks in AbstractCallGraphAlgorithm #1165
base: develop
Are you sure you want to change the base?
Remove duplicated null and body checks in AbstractCallGraphAlgorithm #1165
Conversation
Look like there is something wrong with the CI ...
|
I get that we can save time by doing the check before, but also these Methods have visibility protected. Shouldnt we provide robust methods as a framework? |
The null check can be saved if we annote the parameter with nonnull. I'm not sure if we should remove the body check |
we can kill these nullchecks here as with |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #1165 +/- ##
==============================================
- Coverage 72.49% 23.13% -49.37%
==============================================
Files 439 665 +226
Lines 17655 28896 +11241
Branches 2906 4658 +1752
==============================================
- Hits 12799 6684 -6115
- Misses 3789 21653 +17864
+ Partials 1067 559 -508 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
…g' into improve/remove-duplicate-check-cg
Now we kill null checks using |
Why the CI
|
No description provided.