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>`.