Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 225460 Details for
Bug 397888
Unused type parameter problem should also depend on option to consider @param tag
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
Fix for UI
eclipse.jdt.ui.patch (text/plain), 3.74 KB, created by
Markus Keller
on 2013-01-10 11:43:50 EST
(
hide
)
Description:
Fix for UI
Filename:
MIME Type:
Creator:
Markus Keller
Created:
2013-01-10 11:43:50 EST
Size:
3.74 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.jdt.ui >diff --git ui/org/eclipse/jdt/internal/ui/preferences/PreferencesMessages.properties ui/org/eclipse/jdt/internal/ui/preferences/PreferencesMessages.properties >index 41435e7..1747860 100644 >--- ui/org/eclipse/jdt/internal/ui/preferences/PreferencesMessages.properties >+++ ui/org/eclipse/jdt/internal/ui/preferences/PreferencesMessages.properties >@@ -482,7 +482,7 @@ > ProblemSeveritiesConfigurationBlock_pb_missing_enum_case_despite_default=Signal even if 'default' case exists > ProblemSeveritiesConfigurationBlock_pb_annotation_super_interface_label=Annotation is used as super interface: > ProblemSeveritiesConfigurationBlock_ignore_documented_unused_exceptions=Ignore exceptions documented with '@throws' or '@exception' tags >-ProblemSeveritiesConfigurationBlock_ignore_documented_unused_parameters=Ignore parameters documented with '@param' tag >+ProblemSeveritiesConfigurationBlock_ignore_documented_unused_parameters=Ignore unused parameters documented with '@param' tag > ProblemSeveritiesConfigurationBlock_pb_type_parameter_hiding_label=Type parameter hides another type: > ProblemSeveritiesConfigurationBlock_pb_unused_label_label=Unused 'break' or 'continue' label: > ProblemSeveritiesConfigurationBlock_pb_unused_object_allocation_label=Unused object allocation: >diff --git ui/org/eclipse/jdt/internal/ui/preferences/ProblemSeveritiesConfigurationBlock.java ui/org/eclipse/jdt/internal/ui/preferences/ProblemSeveritiesConfigurationBlock.java >index ff2dea6..844a50b 100644 >--- ui/org/eclipse/jdt/internal/ui/preferences/ProblemSeveritiesConfigurationBlock.java >+++ ui/org/eclipse/jdt/internal/ui/preferences/ProblemSeveritiesConfigurationBlock.java >@@ -1,5 +1,5 @@ > /******************************************************************************* >- * Copyright (c) 2000, 2012 IBM Corporation and others. >+ * Copyright (c) 2000, 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 >@@ -665,11 +665,11 @@ > label= PreferencesMessages.ProblemSeveritiesConfigurationBlock_pb_signal_param_in_overriding_label; > fFilteredPrefTree.addCheckBox(inner, label, PREF_PB_SIGNAL_PARAMETER_IN_OVERRIDING, disabledEnabled, extraIndent, node); > >- label= PreferencesMessages.ProblemSeveritiesConfigurationBlock_ignore_documented_unused_parameters; >- fFilteredPrefTree.addCheckBox(inner, label, PREF_PB_UNUSED_PARAMETER_INCLUDE_DOC_COMMENT_REFERENCE, enabledDisabled, extraIndent, node); >- > label= PreferencesMessages.ProblemSeveritiesConfigurationBlock_pb_unused_type_parameter; > fFilteredPrefTree.addComboBox(inner, label, PREF_PB_UNUSED_TYPE_PARAMETER, errorWarningIgnore, errorWarningIgnoreLabels, defaultIndent, section); >+ >+ label= PreferencesMessages.ProblemSeveritiesConfigurationBlock_ignore_documented_unused_parameters; >+ fFilteredPrefTree.addCheckBox(inner, label, PREF_PB_UNUSED_PARAMETER_INCLUDE_DOC_COMMENT_REFERENCE, enabledDisabled, defaultIndent, node); > > label= PreferencesMessages.ProblemSeveritiesConfigurationBlock_pb_unused_imports_label; > fFilteredPrefTree.addComboBox(inner, label, PREF_PB_UNUSED_IMPORT, errorWarningIgnore, errorWarningIgnoreLabels, defaultIndent, section); >@@ -966,7 +966,6 @@ > private void updateEnableStates() { > boolean enableUnusedParams= !checkValue(PREF_PB_UNUSED_PARAMETER, IGNORE); > getCheckBox(PREF_PB_SIGNAL_PARAMETER_IN_OVERRIDING).setEnabled(enableUnusedParams); >- getCheckBox(PREF_PB_UNUSED_PARAMETER_INCLUDE_DOC_COMMENT_REFERENCE).setEnabled(enableUnusedParams); > > boolean enableDeprecation= !checkValue(PREF_PB_DEPRECATION, IGNORE); > getCheckBox(PREF_PB_DEPRECATION_IN_DEPRECATED_CODE).setEnabled(enableDeprecation);
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 397888
: 225460 |
225599
|
225665
|
225788