diff options
author | Andrew John Hughes <gnu_andrew@member.fsf.org> | 2013-09-19 01:59:39 +0100 |
---|---|---|
committer | Andrew John Hughes <gnu_andrew@member.fsf.org> | 2013-09-19 01:59:39 +0100 |
commit | 5a58f06dc8b6d190c3ef09aad49d0940f33f3ade (patch) | |
tree | a0d61ca9da1f4c87cc9f116593cf84b7546d91ea /javax/lang/model/SourceVersion.java | |
parent | c270d7baa946d1b0827dbb8a4f955542835e7eee (diff) | |
parent | 0116515b19e73f3589092b47dbfe6acbccd811d4 (diff) | |
download | classpath-gtk3.tar.gz |
Merge branch 'master' of git.sv.gnu.org:/srv/git/classpath into gtk3gtk3
Conflicts:
ChangeLog
Diffstat (limited to 'javax/lang/model/SourceVersion.java')
-rw-r--r-- | javax/lang/model/SourceVersion.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/javax/lang/model/SourceVersion.java b/javax/lang/model/SourceVersion.java index 5c3d040be..c2c3a6abe 100644 --- a/javax/lang/model/SourceVersion.java +++ b/javax/lang/model/SourceVersion.java @@ -1,5 +1,5 @@ /* SourceVersion.java -- Source versions of the Java programming language. - Copyright (C) 2012 Free Software Foundation, Inc. + Copyright (C) 2012, 2013 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -55,7 +55,8 @@ public enum SourceVersion /** Java 1.3 */ RELEASE_3, /** Java 1.4 */ RELEASE_4, /** Java 5 */ RELEASE_5, - /** Java 6 */ RELEASE_6; + /** Java 6 */ RELEASE_6, + /** Java 7 @since 1.7 */ RELEASE_7; /** List of language keywords, as specified in 3.9 of the Java * Language Specification. Please keep sorted. */ |