-
Notifications
You must be signed in to change notification settings - Fork 9
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
Add XML docs and reduce warnings. #149
Conversation
@@ -28,6 +28,6 @@ public interface IPinDefinitions : IEnumerable<IPin> | |||
/// <summary> | |||
/// Gets or sets the IPinController associated with the IPins | |||
/// </summary> | |||
IPinController Controller { get; set; } | |||
IPinController? Controller { get; set; } |
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.
Does this impact anything in Meadow.Core?
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.
@adrianstevens Good question, I was refactoring for Meadow.CLI. I'll load up Meadow.Core to see what it throws. Thanks for pointing it out.
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.
As per Slack "Meadow.Core builds without errors or warnings, so in theory Meadow.Core has code to check Controller's nullability.
No description provided.