You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found that a change I had made some time ago has disappeared. It was a simple change to remove warnings since in Java 8 we don't need to provide the type in the diamond.
For example:
In java 1.7 List<SomeObject> myVar = new ArrayList<SomeObject>();
In java 1.8 List<SomeObject> myVar = new ArrayList<>();
The changes has been erased in commit 506c58e by user @daveish
I can submit a new PR to fix this but I would like to know what was the reason for the regression. Was this creating bugs in other generator?