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/compiler/org/eclipse/jdt/internal/compiler/parser/AbstractCommentParser.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/compiler/org/eclipse/jdt/internal/compiler/parser/AbstractCommentParser.java')
-rw-r--r--org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/AbstractCommentParser.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/AbstractCommentParser.java b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/AbstractCommentParser.java
index 039830c77c..5fecec4f8a 100644
--- a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/AbstractCommentParser.java
+++ b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/AbstractCommentParser.java
@@ -21,6 +21,7 @@ import org.eclipse.jdt.internal.compiler.util.Util;
/**
* Parser specialized for decoding javadoc comments
*/
+@SuppressWarnings({"rawtypes", "unchecked"})
public abstract class AbstractCommentParser implements JavadocTagConstants {
// Kind of comment parser

Back to the top