Reporter |
![]() |
---|---|
Created | Feb 3, 2012 9:04:28 PM |
Updated | Feb 3, 2012 9:06:28 PM |
Priority | Normal |
Type | Bug |
Fix versions | No Fix versions |
State | Submitted |
Assignee | Unassigned |
Subsystem | No subsystem |
Affected versions | 6.1.1 |
Fixed in build | No Fixed in build |
It was a method like this one:
Context menu "Refactor this"->"Convert method to property"
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> /// <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); }
Context menu "Refactor this"->"Convert method to property"
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); } }