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'.
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>.
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<IntegerandInteger>.