Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bundles/org.eclipse.jdt.doc.isv/guide/jdt_api_options.htm17
-rw-r--r--bundles/org.eclipse.jdt.doc.user/reference/preferences/java/compiler/ref-preferences-errors-warnings.htm11
2 files changed, 27 insertions, 1 deletions
diff --git a/bundles/org.eclipse.jdt.doc.isv/guide/jdt_api_options.htm b/bundles/org.eclipse.jdt.doc.isv/guide/jdt_api_options.htm
index e8c87f80f..a1a7ac35d 100644
--- a/bundles/org.eclipse.jdt.doc.isv/guide/jdt_api_options.htm
+++ b/bundles/org.eclipse.jdt.doc.isv/guide/jdt_api_options.htm
@@ -2065,14 +2065,29 @@ following label would be considered unreferenced:<br />
<td><b><a href="../reference/api/org/eclipse/jdt/core/JavaCore.html#IGNORE">IGNORE</a></b></td>
</tr>
<tr>
+<td colspan="2"><b>Reporting Unused Type Parameter</b> (<b><a href=
+"../reference/api/org/eclipse/jdt/core/JavaCore.html#COMPILER_PB_UNUSED_TYPE_PARAMETER">COMPILER_PB_UNUSED_TYPE_PARAMETER</a></b>)</td>
+</tr>
+<tr valign="top">
+<td rowspan="3">When enabled, the compiler will issue an error or a warning for unused type parameter.</td>
+<td><b><a href="../reference/api/org/eclipse/jdt/core/JavaCore.html#ERROR">ERROR</a></b></td>
+</tr>
+<tr valign="top">
+<td><b><a href=
+"../reference/api/org/eclipse/jdt/core/JavaCore.html#WARNING"><i>WARNING</i></a></b></td>
+</tr>
+<tr valign="top">
+<td><b><a href="../reference/api/org/eclipse/jdt/core/JavaCore.html#IGNORE">IGNORE</a></b></td>
+</tr>
+<tr>
<td colspan="2"><b>Reporting Unused Import</b> (<b><a href=
"../reference/api/org/eclipse/jdt/core/JavaCore.html#COMPILER_PB_UNUSED_IMPORT">COMPILER_PB_UNUSED_IMPORT</a></b>)</td>
</tr>
+
<tr valign="top">
<td rowspan="3">When enabled, the compiler will issue an error or a warning for unused import
reference.</td>
<td><b><a href="../reference/api/org/eclipse/jdt/core/JavaCore.html#ERROR">ERROR</a></b></td>
-
</tr>
<tr valign="top">
<td><b><a href=
diff --git a/bundles/org.eclipse.jdt.doc.user/reference/preferences/java/compiler/ref-preferences-errors-warnings.htm b/bundles/org.eclipse.jdt.doc.user/reference/preferences/java/compiler/ref-preferences-errors-warnings.htm
index 66183e5c5..f1cd2797e 100644
--- a/bundles/org.eclipse.jdt.doc.user/reference/preferences/java/compiler/ref-preferences-errors-warnings.htm
+++ b/bundles/org.eclipse.jdt.doc.user/reference/preferences/java/compiler/ref-preferences-errors-warnings.htm
@@ -578,6 +578,17 @@
</tr>
<tr>
<td valign="top">
+ <p>Unused type parameter</p>
+ </td>
+ <td valign="top">
+ <p>When enabled, the compiler will issue an error or a warning for unused type parameter.</p>
+ </td>
+ <td valign="top">
+ <p>Ignore</p>
+ </td>
+ </tr>
+ <tr>
+ <td valign="top">
<p>Unused import</p>
</td>
<td valign="top">

Back to the top