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

Key: RSRP-12287
Type: Bug Bug
Status: Open Open
Priority: Minor Minor
Assignee: Sergey Shkredov
Reporter: Andrew Serebryansky
Votes: 0
Watchers: 0
Operations

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

Change signature shold also reorder parameter information in doc comment

Created: 05 Aug 06 18:33   Updated: 21 Feb 08 23:33
Component/s: Refactorings - Change Signature
Fix Version/s: Future Versions
Security Level: Everybody (All jira users)

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

Old URL: http://www.intellij.net/tracker/resharper/viewSCR?publicId=12287


 Description  « Hide
I have this code

/// <summary>
/// registers css include file
/// </summary>
/// <param name="cssUrl"></param>
/// <param name="page"></param>
public static void RegisterCss(string cssUrl, Page page)

{ page.RegisterStartupScript(cssUrl, @"<LINK href=""" + cssUrl + @""" type=""text/css"" rel=""stylesheet"">"); }

I run Change Signature and change the sequence of params

/// <summary>
/// registers css include file
/// </summary>
/// <param name="cssUrl"></param>
/// <param name="page"></param>
public static void RegisterCss(Page page, string cssUrl)
{ page.RegisterStartupScript(cssUrl, @"<LINK href=""" + cssUrl + @""" type=""text/css"" rel=""stylesheet"">"); }

}

As you can see the params within /// comment remained unchanged



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