Bugs item #681203, was opened at 2003-02-05 14:24
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=438935&aid=681203&group_id=44253
Category: Definitions (source editor)
Group: Annoying
Status: Open
Resolution: None
Priority: 3
Submitted By: Peter Centgraf (centgraf)
Assigned to: Nobody/Anonymous (nobody)
Summary: Comment Indenting
Initial Comment:
Story:
User is editing a document with multiline comments. She decides to break up a single line of comments into multiple lines. Rather than getting this:
/**
* Here is my comment,
* nicely formatted on multiple lines.
*/
... she instead gets this:
/**
* Here is my comment,
indented, but missing the asterisk.
*/
This is inconsistent with the behavior of the indenter when creating a new line within a block of comments, which does this:
/**
* Here is my comment,
*
*/
Two test cases for this problem are here:
drjava.model.definitions.indent.ActionMultilineCommentNewlineMidlineTest
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=438935&aid=681203&group_id=44253
|