diff options
| author | Jayaprakash Arthanareeswaran | 2012-11-07 05:03:59 +0000 |
|---|---|---|
| committer | Stephan Herrmann | 2012-11-15 16:59:42 +0000 |
| commit | 4a806e0cbfccd5d2cedf7368b93a15636e9c7323 (patch) | |
| tree | 560bb43baf5865cbfe2d1ff77b7a287745168aae | |
| parent | 73d878eba35334b20ab3c8afa3839adf1c5de5a3 (diff) | |
| download | eclipse.jdt.core-4a806e0cbfccd5d2cedf7368b93a15636e9c7323.tar.gz eclipse.jdt.core-4a806e0cbfccd5d2cedf7368b93a15636e9c7323.tar.xz eclipse.jdt.core-4a806e0cbfccd5d2cedf7368b93a15636e9c7323.zip | |
Fix for bug 385780 - Removed the stale TODO note
| -rw-r--r-- | org.eclipse.jdt.core/batch/org/eclipse/jdt/internal/compiler/batch/Main.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jdt.core/batch/org/eclipse/jdt/internal/compiler/batch/Main.java b/org.eclipse.jdt.core/batch/org/eclipse/jdt/internal/compiler/batch/Main.java index 85541ea707..97896586d4 100644 --- a/org.eclipse.jdt.core/batch/org/eclipse/jdt/internal/compiler/batch/Main.java +++ b/org.eclipse.jdt.core/batch/org/eclipse/jdt/internal/compiler/batch/Main.java @@ -3873,7 +3873,7 @@ private void handleErrorOrWarningToken(String token, boolean isEnabling, int sev setSeverity(CompilerOptions.OPTION_ReportUnusedLabel, severity, isEnabling); setSeverity(CompilerOptions.OPTION_ReportUnusedTypeArgumentsForMethodInvocation, severity, isEnabling); setSeverity(CompilerOptions.OPTION_ReportRedundantSpecificationOfTypeArguments, severity, isEnabling); - setSeverity(CompilerOptions.OPTION_ReportUnusedTypeParameter, severity,isEnabling); //TODO - Enable this when tests are modified at ui addition. + setSeverity(CompilerOptions.OPTION_ReportUnusedTypeParameter, severity,isEnabling); return; } else if (token.equals("unusedParam")) { //$NON-NLS-1$ setSeverity(CompilerOptions.OPTION_ReportUnusedParameter, severity, isEnabling); |
