Reporter | vilinski (python) |
---|---|
Created | Feb 3, 2012 9:04:28 PM |
Updated | Apr 16, 2018 11:59:40 AM |
Resolved | Apr 16, 2018 11:59:40 AM |
Subsystem | Refactorings |
Assignee | Alisa Afonina (alisa.afonina) |
Priority | Normal |
State | Obsolete |
Type | Bug |
Fix version | No Fix versions |
Affected versions | 6.1.1 |
Fixed In Version ReSharper | Undefined |
VsVersion | All Versions |
It was a method like this one:
and there is the property with messed doc comments:
/// <summary>Context menu "Refactor this"->"Convert method to property"
/// Determines whether this instance has credentials - not empty <see cref="Server"/> and <see cref="User"/> values.
/// </summary>
/// <returns>
/// <c>true</c> if this instance has credentials - not empty <see cref="Server"/> and <see cref="User"/> values; otherwise, <c>false</c>.
/// </returns>
public bool HasCredentials()
{
return
!string.IsNullOrWhiteSpace(Server) &&
!string.IsNullOrWhiteSpace(User);
}
and there is the property with messed doc comments:
/// <summary>
/// Determines whether this instance has credentials - not empty <see cref="Server"/> and <see cref="User"/> values.
/// </summary>
/// <value> <c>true</c> if this instance has credentials - not empty <see cref="Server"/> and <see cref="User"/> values; otherwise, <c>false</c>. </value>
public bool HasCredentials
{
get
{
return
!string.IsNullOrWhiteSpace(Server) &&
!string.IsNullOrWhiteSpace(User);
}
}