-
-
Notifications
You must be signed in to change notification settings - Fork 14
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
Valkyrienyanko cleanup #69
Conversation
{ | ||
lineProvider.YarnProject = yarnProject; | ||
} | ||
else lineProvider.YarnProject ??= yarnProject; |
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.
I personally don't prefer if/else without braces, so I'll add them back here.
@@ -1291,7 +1286,7 @@ public async Task<CommandDispatchResult> DispatchCommandToNode(Command command, | |||
/// <inheritdoc cref="DispatchCommandToNode"/> | |||
/// <param name="command">The text of the command to | |||
/// dispatch.</param> | |||
public async Task<CommandDispatchResult> DispatchCommandToNode(string command, | |||
public static async Task<CommandDispatchResult> DispatchCommandToNode(string command, |
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.
Technically a breaking change, but it's unlikely people were calling this directly
Replaces #68