History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: RSRP-5734
Type: Bug Bug
Status: Open Open
Priority: Normal Normal
Assignee: Oleg Stepanov
Reporter: Nebby
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
ReSharper

Formatting lost doing Move Member Up/Down

Created: 05 Aug 06 02:12   Updated: 09 Sep 06 13:26
Component/s: Code Insight
Fix Version/s: None
Security Level: Everybody (All jira users)

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown

Build: 156
Old URL: http://www.intellij.net/tracker/resharper/viewSCR?publicId=5734


 Description  « Hide
It seems that in build 156, if I have several private fields followed by a method with XML documentation comments:
protected long _v1;
protected long _v2;
protected long _v3;
protected long _v4;

/// <summary>
/// Stuff Here.
/// </summary>
void MyMethod() { }

If I move the MyMethod method up "through" the private fields, (with ctrl-alt-shift up and down) what I end up with is:

/// <summary>
/// Stuff Here.
/// </summary>
void MyMethod() { }

protected long _v1;

protected long _v2;

protected long _v3;

protected long _v4;

Instead of:

/// <summary>
/// Stuff Here.
/// </summary>
void MyMethod() { }

protected long _v1;
protected long _v2;
protected long _v3;
protected long _v4;


 All   Comments   Work Log   Change History      Sort Order:
There are no comments yet on this issue.