-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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 unused constructors in the external AssumptionViolatedException. #993
Remove unused constructors in the external AssumptionViolatedException. #993
Conversation
|
||
@DataPoint | ||
public static Matcher<?> IS_THREE = is(3); | ||
public static Matcher<Integer> IS_THREE = is(3); | ||
|
||
@DataPoint | ||
public static Matcher<?> NULL = 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.
I think this should be Matcher<Integer>
, too. Even though the current Theories
implementation will not take the type parameter into account.
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.
Good catch. Fixed
30efd9a
to
fdc4374
Compare
I am going to wait until #994 is merged, then rebase this pull before merging. |
fdc4374
to
d0b029f
Compare
Merged in changes from #994 and rebased. PTAL |
…ve-unused-ctors Remove unused constructors in the external AssumptionViolatedException.
Thanks! |
Thanks for reviewing! I owe you an update to the release notes |
What do you want to update in the release notes? |
@marcphilipp just sent out #999 |
Remove unused constructors in the external AssumptionViolatedException.
Rename fields of internal AssumptionViolatedException so we don't break serialization with JUnit 4.11