While it is not expected to be a major feature release, so far, it includes a feature that I find invaluable for clearing up java verbosity: Local-Variable Type Inference!
Now we can have code like this! :
var x = new HashMap<String,Integer>(); //inferred to be HashMap<String,Integer>