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 199562 Details for
Bug 351934
[1.7][preferences] compiler option to warn when diamond can be used, but type args are used instead.
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
preference.txt (text/plain), 7.00 KB, created by
Deepak Azad
on 2011-07-13 06:28:18 EDT
(
hide
)
Description:
fix
Filename:
MIME Type:
Creator:
Deepak Azad
Created:
2011-07-13 06:28:18 EDT
Size:
7.00 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.jdt.ui >Index: ui/org/eclipse/jdt/internal/ui/preferences/PreferencesMessages.java >=================================================================== >RCS file: /cvsroot/eclipse/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/PreferencesMessages.java,v >retrieving revision 1.141.2.1 >diff -u -r1.141.2.1 PreferencesMessages.java >--- ui/org/eclipse/jdt/internal/ui/preferences/PreferencesMessages.java 2 May 2011 00:29:27 -0000 1.141.2.1 >+++ ui/org/eclipse/jdt/internal/ui/preferences/PreferencesMessages.java 13 Jul 2011 10:23:35 -0000 >@@ -5,6 +5,10 @@ > * which accompanies this distribution, and is available at > * http://www.eclipse.org/legal/epl-v10.html > * >+ * This is an implementation of an early-draft specification developed under the Java >+ * Community Process (JCP) and is made available for testing and evaluation purposes >+ * only. The code is not compatible with any specification of the JCP. >+ * > * Contributors: > * IBM Corporation - initial API and implementation > * John Kaplan, johnkaplantech@gmail.com - 108071 [code templates] template for body of newly created class >@@ -264,6 +268,7 @@ > public static String ProblemSeveritiesConfigurationBlock_ignore_documented_unused_parameters; > public static String ProblemSeveritiesConfigurationBlock_pb_redundant_null_check; > public static String ProblemSeveritiesConfigurationBlock_pb_redundant_super_interface_label; >+ public static String ProblemSeveritiesConfigurationBlock_pb_redundant_type_arguments_label; > public static String ProblemSeveritiesConfigurationBlock_include_assert_in_null_analysis; > public static String ProblemSeveritiesConfigurationBlock_treat_optional_as_fatal; > public static String SourceAttachmentPropertyPage_error_title; >Index: ui/org/eclipse/jdt/internal/ui/preferences/PreferencesMessages.properties >=================================================================== >RCS file: /cvsroot/eclipse/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/PreferencesMessages.properties,v >retrieving revision 1.527.2.3 >diff -u -r1.527.2.3 PreferencesMessages.properties >--- ui/org/eclipse/jdt/internal/ui/preferences/PreferencesMessages.properties 6 May 2011 18:09:25 -0000 1.527.2.3 >+++ ui/org/eclipse/jdt/internal/ui/preferences/PreferencesMessages.properties 13 Jul 2011 10:23:40 -0000 >@@ -5,6 +5,10 @@ > # which accompanies this distribution, and is available at > # http://www.eclipse.org/legal/epl-v10.html > # >+# This is an implementation of an early-draft specification developed under the Java >+# Community Process (JCP) and is made available for testing and evaluation purposes >+# only. The code is not compatible with any specification of the JCP. >+# > # Contributors: > # IBM Corporation - initial API and implementation > # John Kaplan, johnkaplantech@gmail.com - 108071 [code templates] template for body of newly created class >@@ -429,6 +433,7 @@ > ProblemSeveritiesConfigurationBlock_pb_parameter_assignment=Parameter assignment: > ProblemSeveritiesConfigurationBlock_pb_redundant_null_check=Redundant null check: > ProblemSeveritiesConfigurationBlock_pb_redundant_super_interface_label=Redundant super interface: >+ProblemSeveritiesConfigurationBlock_pb_redundant_type_arguments_label=Redundant type arguments > ProblemSeveritiesConfigurationBlock_pb_non_externalized_strings_label=Non-externalized strings (missing/unused $NON-NLS$ tag): > ProblemSeveritiesConfigurationBlock_pb_dead_code=Dead code (e.g. 'if (false)'): > ProblemSeveritiesConfigurationBlock_pb_deprecation_label=Deprecated API: >Index: ui/org/eclipse/jdt/internal/ui/preferences/ProblemSeveritiesConfigurationBlock.java >=================================================================== >RCS file: /cvsroot/eclipse/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/ProblemSeveritiesConfigurationBlock.java,v >retrieving revision 1.63.2.1 >diff -u -r1.63.2.1 ProblemSeveritiesConfigurationBlock.java >--- ui/org/eclipse/jdt/internal/ui/preferences/ProblemSeveritiesConfigurationBlock.java 11 Mar 2011 13:03:55 -0000 1.63.2.1 >+++ ui/org/eclipse/jdt/internal/ui/preferences/ProblemSeveritiesConfigurationBlock.java 13 Jul 2011 10:23:42 -0000 >@@ -5,6 +5,10 @@ > * which accompanies this distribution, and is available at > * http://www.eclipse.org/legal/epl-v10.html > * >+ * This is an implementation of an early-draft specification developed under the Java >+ * Community Process (JCP) and is made available for testing and evaluation purposes >+ * only. The code is not compatible with any specification of the JCP. >+ * > * Contributors: > * IBM Corporation - initial API and implementation > * Benjamin Muskalla <b.muskalla@gmx.net> - [preferences] Add preference for new compiler warning: MissingSynchronizedModifierInInheritedMethod - https://bugs.eclipse.org/bugs/show_bug.cgi?id=245240 >@@ -103,6 +107,7 @@ > private static final Key PREF_15_PB_TYPE_PARAMETER_HIDING= getJDTCoreKey(JavaCore.COMPILER_PB_TYPE_PARAMETER_HIDING); > private static final Key PREF_15_PB_INCOMPLETE_ENUM_SWITCH= getJDTCoreKey(JavaCore.COMPILER_PB_INCOMPLETE_ENUM_SWITCH); > private static final Key PREF_15_PB_RAW_TYPE_REFERENCE= getJDTCoreKey(JavaCore.COMPILER_PB_RAW_TYPE_REFERENCE); >+ private static final Key PREF_17_PB_REDUNDANT_TYPE_ARGUMENTS= getJDTCoreKey(JavaCore.COMPILER_PB_REDUNDANT_TYPE_ARGUMENTS); > private static final Key PREF_15_PB_UNAVOIDABLE_GENERIC_TYPE_PROBLEMS= getJDTCoreKey(JavaCore.COMPILER_PB_UNAVOIDABLE_GENERIC_TYPE_PROBLEMS); > > private static final Key PREF_PB_SUPPRESS_WARNINGS= getJDTCoreKey(JavaCore.COMPILER_PB_SUPPRESS_WARNINGS); >@@ -161,7 +166,7 @@ > PREF_15_PB_AUTOBOXING_PROBLEM, PREF_15_PB_MISSING_OVERRIDE_ANNOTATION, PREF_16_PB_MISSING_OVERRIDE_ANNOTATION_FOR_INTERFACE_METHOD_IMPLEMENTATION, > PREF_15_PB_ANNOTATION_SUPER_INTERFACE, > PREF_15_PB_TYPE_PARAMETER_HIDING, PREF_15_PB_INCOMPLETE_ENUM_SWITCH, PREF_PB_MISSING_DEPRECATED_ANNOTATION, >- PREF_15_PB_RAW_TYPE_REFERENCE, PREF_15_PB_UNAVOIDABLE_GENERIC_TYPE_PROBLEMS, >+ PREF_15_PB_RAW_TYPE_REFERENCE, PREF_15_PB_UNAVOIDABLE_GENERIC_TYPE_PROBLEMS, PREF_17_PB_REDUNDANT_TYPE_ARGUMENTS, > PREF_PB_FATAL_OPTIONAL_ERROR, > PREF_PB_FORBIDDEN_REFERENCE, PREF_PB_DISCOURRAGED_REFERENCE, > PREF_PB_SUPPRESS_WARNINGS, PREF_PB_SUPPRESS_OPTIONAL_ERRORS, >@@ -457,6 +462,9 @@ > label= PreferencesMessages.ProblemSeveritiesConfigurationBlock_pb_final_param_bound_label; > fFilteredPrefTree.addComboBox(inner, label, PREF_15_PB_FINAL_PARAM_BOUND, errorWarningIgnore, errorWarningIgnoreLabels, defaultIndent, section); > >+ label= PreferencesMessages.ProblemSeveritiesConfigurationBlock_pb_redundant_type_arguments_label; >+ fFilteredPrefTree.addComboBox(inner, label, PREF_17_PB_REDUNDANT_TYPE_ARGUMENTS, errorWarningIgnore, errorWarningIgnoreLabels, defaultIndent, section); >+ > label= PreferencesMessages.ProblemSeveritiesConfigurationBlock_pb_unavoidable_generic_type_problems; > fFilteredPrefTree.addCheckBox(inner, label, PREF_15_PB_UNAVOIDABLE_GENERIC_TYPE_PROBLEMS, disabledEnabled, defaultIndent, section); >
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 351934
: 199562