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

Collapse All | Expand All

(-)batch/org/eclipse/jdt/internal/compiler/batch/Main.java (+3 lines)
Lines 3030-3035 Link Here
3030
		this.options.put(
3030
		this.options.put(
3031
			CompilerOptions.OPTION_ReportUnusedDeclaredThrownExceptionIncludeDocCommentReference,
3031
			CompilerOptions.OPTION_ReportUnusedDeclaredThrownExceptionIncludeDocCommentReference,
3032
			CompilerOptions.DISABLED);
3032
			CompilerOptions.DISABLED);
3033
		this.options.put(
3034
				CompilerOptions.OPTION_ReportUnusedDeclaredThrownExceptionIncludeUncheckedExceptions,
3035
				CompilerOptions.DISABLED);
3033
	}
3036
	}
3034
	// configure warnings for javadoc contents
3037
	// configure warnings for javadoc contents
3035
	if (this.warnJavadocOn) {
3038
	if (this.warnJavadocOn) {
(-)model/org/eclipse/jdt/core/JavaCore.java (-1 / +1 lines)
Lines 465-471 Link Here
465
	 * @see #getDefaultOptions()
465
	 * @see #getDefaultOptions()
466
	 * @since 3.4
466
	 * @since 3.4
467
	 */
467
	 */
468
	public static final String COMPILER_PB_UNUSED_DECLARED_THROWN_EXCEPTION_INCLUDE_UNCHECKED_EXCEPTIONS = PLUGIN_ID + ".compiler.problem.unusedDeclaredThrownExceptionIncludeUnckechedExceptions"; //$NON-NLS-1$
468
	public static final String COMPILER_PB_UNUSED_DECLARED_THROWN_EXCEPTION_INCLUDE_UNCHECKED_EXCEPTIONS = PLUGIN_ID + ".compiler.problem.unusedDeclaredThrownExceptionIncludeUncheckedExceptions"; //$NON-NLS-1$
469
	/**
469
	/**
470
	 * Possible  configurable option ID.
470
	 * Possible  configurable option ID.
471
	 * @see #getDefaultOptions()
471
	 * @see #getDefaultOptions()

Return to bug 100278