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
I had something like
x = new HashMap<Integer, Integer>();
This gives an error x cannot be resolved to a variable. This has a fix Create local vartiable 'x'.
x cannot be resolved to a variable
Create local vartiable 'x'
It used to become (not sure when it changed, but fairly recently)
HashMap<Integer, Integer> x = new HashMap<Integer, Integer>();
But now it becomes
HashMap<Integer x = new HashMap<Integer, Integer>();
With a drop down containing HashMap<Integer and Integer>.
HashMap<Integer
Integer>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I had something like
This gives an error
x cannot be resolved to a variable
. This has a fixCreate local vartiable 'x'
.It used to become (not sure when it changed, but fairly recently)
But now it becomes
With a drop down containing
HashMap<Integer
andInteger>
.The text was updated successfully, but these errors were encountered: