Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Herrmann2014-04-24 21:58:56 +0000
committerStephan Herrmann2014-05-01 13:05:53 +0000
commit03b23085bcb1d99f86bc2d8c551d92818ab41664 (patch)
treed31bf7d2d5cb276e4a83db005ddec138fd2a69d2 /othersrc
parente2f75a5a3a64d019919e5672806670535f9bd368 (diff)
downloadorg.eclipse.objectteams-03b23085bcb1d99f86bc2d8c551d92818ab41664.tar.gz
org.eclipse.objectteams-03b23085bcb1d99f86bc2d8c551d92818ab41664.tar.xz
org.eclipse.objectteams-03b23085bcb1d99f86bc2d8c551d92818ab41664.zip
Enum must not be annotated - compiler will run into cycle otherwise
(via *enum* RetentionPolicy used in meta annotation of @SW).
Diffstat (limited to 'othersrc')
-rw-r--r--othersrc/JCLMin1.5/src/java/lang/Enum.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/othersrc/JCLMin1.5/src/java/lang/Enum.java b/othersrc/JCLMin1.5/src/java/lang/Enum.java
index d31ae7f91..a325fcd06 100644
--- a/othersrc/JCLMin1.5/src/java/lang/Enum.java
+++ b/othersrc/JCLMin1.5/src/java/lang/Enum.java
@@ -1,7 +1,7 @@
package java.lang;
-@SuppressWarnings("serial")
public abstract class Enum<T extends Enum<T>> implements Comparable<T>, java.io.Serializable {
+ private static final long serialVersionUID = 1L;
protected Enum(String name, int ordinal) {
}
public final String name() {

Back to the top