-
Notifications
You must be signed in to change notification settings - Fork 136
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
Added image gradients to wrapper. #163
base: master
Are you sure you want to change the base?
Conversation
throw new ArgumentNullException(nameof(image)); | ||
|
||
if (gradient == null) | ||
throw new ArgumentNullException(nameof(image)); |
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.
nameof(gradient)
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.
And
image.ThrowIfDisposed();
graduent.ThrowIfDisposed();
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.
And, you created feature branch but it does not derive from develop branch.
Why don't you use gitflow?
By chance, does github PR force to create branch from master?
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.
Thanks for the feedback. Done.
Regarding the branch, I don't understand?
Should I branch from development instead of master?
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.
Should I branch from development instead of master?
Yes. I adopt gitflow development model.
I'm very sorry for the inconvenience.
No description provided.