View | Details | Raw Unified | Return to bug 159456 | Differences between
and this patch

Collapse All | Expand All

(-)batch/org/eclipse/jdt/internal/compiler/batch/messages.properties (-1 / +1 lines)
Lines 232-238 Link Here
232
\      over-ann             missing @Override annotation\n\
232
\      over-ann             missing @Override annotation\n\
233
\      paramAssign          assignment to a parameter\n\
233
\      paramAssign          assignment to a parameter\n\
234
\      pkgDefaultMethod   + attempt to override package-default method\n\
234
\      pkgDefaultMethod   + attempt to override package-default method\n\
235
\      raw                  usage of raw type\n\
235
\      raw                + usage of raw type\n\
236
\      semicolon            unnecessary semicolon, empty statement\n\
236
\      semicolon            unnecessary semicolon, empty statement\n\
237
\      serial             + missing serialVersionUID\n\
237
\      serial             + missing serialVersionUID\n\
238
\      specialParamHiding   constructor or setter parameter hiding another field\n\
238
\      specialParamHiding   constructor or setter parameter hiding another field\n\
(-)model/org/eclipse/jdt/core/JavaCore.java (-1 / +1 lines)
Lines 2042-2048 Link Here
2042
	 *    reject raw references to generic types.
2042
	 *    reject raw references to generic types.
2043
	 *     - option id:         "org.eclipse.jdt.core.compiler.problem.rawTypeReference"
2043
	 *     - option id:         "org.eclipse.jdt.core.compiler.problem.rawTypeReference"
2044
	 *     - possible values:   { "error", "warning", "ignore" }
2044
	 *     - possible values:   { "error", "warning", "ignore" }
2045
	 *     - default:           "ignore"
2045
	 *     - default:           "warning"
2046
	 * 
2046
	 * 
2047
	 * COMPILER / Reporting final Bound for Type Parameter
2047
	 * COMPILER / Reporting final Bound for Type Parameter
2048
	 *    When enabled, the compiler will issue an error or a warning whenever a generic type parameter is associated with a 
2048
	 *    When enabled, the compiler will issue an error or a warning whenever a generic type parameter is associated with a 
(-)compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java (+1 lines)
Lines 205-210 Link Here
205
		| AssertUsedAsAnIdentifier
205
		| AssertUsedAsAnIdentifier
206
		| EnumUsedAsAnIdentifier
206
		| EnumUsedAsAnIdentifier
207
		| UncheckedTypeOperation
207
		| UncheckedTypeOperation
208
		| RawTypeReference
208
		| MissingSerialVersion
209
		| MissingSerialVersion
209
		| VarargsArgumentNeedCast
210
		| VarargsArgumentNeedCast
210
		| ForbiddenReference
211
		| ForbiddenReference

Return to bug 159456