8193489: Add information about local variable type inference to SourceVersion.RELEASE_10

Reviewed-by: sundar, mr
This commit is contained in:
Joe Darcy 2017-12-13 19:48:03 -08:00
parent feffd15dc2
commit a05689a09f

View File

@ -56,7 +56,7 @@ public enum SourceVersion {
* 1.7: diamond syntax, try-with-resources, etc.
* 1.8: lambda expressions and default methods
* 9: modules, small cleanups to 1.7 and 1.8 changes
* 10: to-be-determined changes
* 10: local-variable type inference (var)
*/
/**
@ -157,6 +157,9 @@ public enum SourceVersion {
* The version recognized by the Java Platform, Standard Edition
* 10.
*
* Additions in this release include local-variable type inference
* ({@code var}).
*
* @since 10
*/
RELEASE_10;