Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJayaprakash Arthanareeswaran2014-01-28 00:34:16 +0000
committerJayaprakash Arthanareeswaran2014-01-28 02:44:52 +0000
commit3f056938fd0d55f64055cc988fa986e793b5a072 (patch)
tree45d7eceb6543e8a8b6748e404ec4456aa8a4837b /org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MarkerAnnotation.java
parent3c2d97ccc9f1e71661743a661a14d10422de8f35 (diff)
downloadeclipse.jdt.core-3f056938fd0d55f64055cc988fa986e793b5a072.tar.gz
eclipse.jdt.core-3f056938fd0d55f64055cc988fa986e793b5a072.tar.xz
eclipse.jdt.core-3f056938fd0d55f64055cc988fa986e793b5a072.zip
Bug 422822 - Fix the Generics related warnings in official build
Diffstat (limited to 'org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MarkerAnnotation.java')
-rw-r--r--org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MarkerAnnotation.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MarkerAnnotation.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MarkerAnnotation.java
index adf2b59db4..5dc5f1c733 100644
--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MarkerAnnotation.java
+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MarkerAnnotation.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2004, 2010 IBM Corporation and others.
+ * Copyright (c) 2004, 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
@@ -26,6 +26,7 @@ import java.util.List;
* @since 3.1
* @noinstantiate This class is not intended to be instantiated by clients.
*/
+@SuppressWarnings("rawtypes")
public final class MarkerAnnotation extends Annotation {
/**

Back to the top