-
Notifications
You must be signed in to change notification settings - Fork 42
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
chore: various non-functional refactors #1066
Conversation
* An extension point which can run around flag resolution. They are intended to be used as a way to add custom logic | ||
* to the lifecycle of flag evaluation. | ||
* | ||
* @see Hook | ||
*/ | ||
public interface BooleanHook extends Hook<Boolean> { |
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.
inheritDoc
isn't valid for classes.
@@ -16,8 +17,8 @@ | |||
@SuppressWarnings("PMD.BeanMembersShouldSerialize") | |||
public final class ImmutableContext implements EvaluationContext { | |||
|
|||
@Delegate | |||
private final Structure structure; | |||
@Delegate(excludes = DelegateExclusions.class) |
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.
merge
was coming both from this delegation and the superclass, which causes some odd compiler warnings. It's just coming via inheritance now.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1066 +/- ##
============================================
+ Coverage 95.03% 95.25% +0.22%
- Complexity 392 393 +1
============================================
Files 38 38
Lines 886 886
Branches 54 54
============================================
+ Hits 842 844 +2
+ Misses 24 23 -1
+ Partials 20 19 -1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
e971afa
to
63fda52
Compare
Signed-off-by: Todd Baert <[email protected]>
63fda52
to
9e7574d
Compare
|
/** | ||
* JaCoCo ignores coverage of methods annotated with any annotation with "generated" in the name. | ||
*/ |
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.
😎
Various small fixes to address warnings. None are functional.