We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
With the tipper AssignmentAndAssignmentOfSameValue:
class Element extends AccessibleObject implements Member { private final AccessibleObject accessibleObject; private final Member member; <M extends AccessibleObject & Member> Element(M member) { checkNotNull(member); this.member = this.accessibleObject = member; } ...
goes to
class Element extends AccessibleObject implements Member { private final AccessibleObject accessibleObject; private final Member member; <M extends AccessibleObject & Member> Element(M member) { checkNotNull(member); this.accessibleObject = member; this.member = member; } ...
Gives type mismatch error I suppose its a wontfix
The text was updated successfully, but these errors were encountered:
OriRoth
No branches or pull requests
With the tipper AssignmentAndAssignmentOfSameValue:
goes to
Gives type mismatch error
I suppose its a wontfix
The text was updated successfully, but these errors were encountered: