Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Herrmann2013-12-17 16:50:02 +0000
committerStephan Herrmann2013-12-17 16:50:02 +0000
commit1002fa433ca15b60bf0c4f55898a17d21f3db192 (patch)
treef3f18509dae8757264600e0e21ab9b75277f4e83 /org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/UnionType.java
parent751095f78670d0bc22610288de2788c5dcc6336f (diff)
downloadorg.eclipse.objectteams-1002fa433ca15b60bf0c4f55898a17d21f3db192.tar.gz
org.eclipse.objectteams-1002fa433ca15b60bf0c4f55898a17d21f3db192.tar.xz
org.eclipse.objectteams-1002fa433ca15b60bf0c4f55898a17d21f3db192.zip
Update jdt.core & tests to I20131212-1600 for 4.4 M4
Diffstat (limited to 'org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/UnionType.java')
-rw-r--r--org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/UnionType.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/UnionType.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/UnionType.java
index 5ed7b413c..31a3167c7 100644
--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/UnionType.java
+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/UnionType.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2011 IBM Corporation and others.
+ * Copyright (c) 2011, 2013 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -27,6 +27,7 @@ import java.util.List;
* @since 3.7.1
* @noinstantiate This class is not intended to be instantiated by clients.
*/
+@SuppressWarnings({"rawtypes", "unchecked"})
public class UnionType extends Type {
/**

Back to the top