### Eclipse Workspace Patch 1.0 #P org.eclipse.jdt.core Index: formatter/org/eclipse/jdt/core/formatter/DefaultCodeFormatterConstants.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.jdt.core/formatter/org/eclipse/jdt/core/formatter/DefaultCodeFormatterConstants.java,v retrieving revision 1.81 diff -u -r1.81 DefaultCodeFormatterConstants.java --- formatter/org/eclipse/jdt/core/formatter/DefaultCodeFormatterConstants.java 23 Apr 2007 23:45:48 -0000 1.81 +++ formatter/org/eclipse/jdt/core/formatter/DefaultCodeFormatterConstants.java 16 May 2007 14:21:35 -0000 @@ -3035,7 +3035,7 @@ * FORMATTER / Option to indent block comments that start on the first column * - option id: "org.eclipse.jdt.core.formatter.formatter.never_indent_block_comments_on_first_column" * - possible values: { TRUE, FALSE } - * - default: TRUE + * - default: FALSE * * @see #TRUE * @see #FALSE @@ -3047,7 +3047,7 @@ * FORMATTER / Option to indent line comments that start on the first column * - option id: "org.eclipse.jdt.core.formatter.formatter.never_indent_line_comments_on_first_column" * - possible values: { TRUE, FALSE } - * - default: TRUE + * - default: FALSE * * @see #TRUE * @see #FALSE Index: formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java,v retrieving revision 1.84 diff -u -r1.84 DefaultCodeFormatterOptions.java --- formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java 23 Apr 2007 23:46:45 -0000 1.84 +++ formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java 16 May 2007 14:21:35 -0000 @@ -2172,8 +2172,8 @@ setJavaConventionsSettings(); this.tab_char = TAB; this.tab_size = 4; - this.never_indent_block_comments_on_first_column = true; - this.never_indent_line_comments_on_first_column = true; + this.never_indent_block_comments_on_first_column = false; + this.never_indent_line_comments_on_first_column = false; } public void setJavaConventionsSettings() {