-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Remove empty xml comment lines #7401
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove empty xml comment lines #7401
Conversation
| /// <summary> | ||
| /// | ||
| /// Retrieves input from the host virtual console and writes it to the pipeline output. | ||
| /// |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The regular expression should remove this whitespace unless the line after the whitespace contains text and not <.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed.
SteveL-MSFT
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@iSazonov I appreciate your passion to clean up the code, but perhaps we should discuss whether it's worth the review effort next time before you start a. PR as this was review took significant time.
| /// <exception cref="System.ArgumentException"> | ||
| /// path is null or empty. | ||
| /// </exception> | ||
| /// |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missed this one
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems broken EOL.
Fixed.
| /// start the playback | ||
| /// </summary> | ||
| internal virtual void ExecuteBufferPlayBack(DoPlayBackCall playback) { } | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This whitespace should probably stay
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed.
| using System.Management.Automation.Host; | ||
| using System.Management.Automation.Internal; | ||
| using Microsoft.PowerShell.Commands.Internal.Format; | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Put back this whitespace
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed.
| /// </summary> | ||
| [Parameter(ValueFromPipeline = true)] | ||
| public PSObject InputObject { set; get; } = AutomationNull.Value; | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Put back this whitespace
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed.
| /// True if read succeeds. | ||
| /// </returns> | ||
| /// | ||
| /// does not throw |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we move this to inside the <summary/>?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed.
|
@SteveL-MSFT We already have a tracking Issue but haven't plan. With the plan we'd freeze current PRs and spend 1-2 weeks to fix as many style issues as possible. |
PR Summary
Instead of #7356.
Please review commit by commit.
PR Checklist
.h,.cpp,.cs,.ps1and.psm1files have the correct copyright headerWIP:to the beginning of the title and remove the prefix when the PR is ready.[feature]if the change is significant or affects feature tests