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

Collapse All | Expand All

(-)formatter/org/eclipse/jdt/core/formatter/DefaultCodeFormatterConstants.java (-2 / +2 lines)
Lines 3035-3041 Link Here
3035
	 * FORMATTER / Option to indent block comments that start on the first column
3035
	 * FORMATTER / Option to indent block comments that start on the first column
3036
	 *     - option id:         "org.eclipse.jdt.core.formatter.formatter.never_indent_block_comments_on_first_column"
3036
	 *     - option id:         "org.eclipse.jdt.core.formatter.formatter.never_indent_block_comments_on_first_column"
3037
	 *     - possible values:   { TRUE, FALSE }
3037
	 *     - possible values:   { TRUE, FALSE }
3038
	 *     - default:           TRUE
3038
	 *     - default:           FALSE
3039
	 * </pre>
3039
	 * </pre>
3040
	 * @see #TRUE
3040
	 * @see #TRUE
3041
	 * @see #FALSE
3041
	 * @see #FALSE
Lines 3047-3053 Link Here
3047
	 * FORMATTER / Option to indent line comments that start on the first column
3047
	 * FORMATTER / Option to indent line comments that start on the first column
3048
	 *     - option id:         "org.eclipse.jdt.core.formatter.formatter.never_indent_line_comments_on_first_column"
3048
	 *     - option id:         "org.eclipse.jdt.core.formatter.formatter.never_indent_line_comments_on_first_column"
3049
	 *     - possible values:   { TRUE, FALSE }
3049
	 *     - possible values:   { TRUE, FALSE }
3050
	 *     - default:           TRUE
3050
	 *     - default:           FALSE
3051
	 * </pre>
3051
	 * </pre>
3052
	 * @see #TRUE
3052
	 * @see #TRUE
3053
	 * @see #FALSE
3053
	 * @see #FALSE
(-)formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java (-2 / +2 lines)
Lines 2172-2179 Link Here
2172
		setJavaConventionsSettings();
2172
		setJavaConventionsSettings();
2173
		this.tab_char = TAB;
2173
		this.tab_char = TAB;
2174
		this.tab_size = 4;
2174
		this.tab_size = 4;
2175
		this.never_indent_block_comments_on_first_column = true;
2175
		this.never_indent_block_comments_on_first_column = false;
2176
		this.never_indent_line_comments_on_first_column = true;
2176
		this.never_indent_line_comments_on_first_column = false;
2177
	}
2177
	}
2178
2178
2179
	public void setJavaConventionsSettings() {
2179
	public void setJavaConventionsSettings() {

Return to bug 185928