-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Community.testpass.1.25.2021 #4094
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
Conversation
|
These PRs need to be merged individually. Do not merge this Community Test Pass PR directly. |
|
Two separate PRs added an IndexOf method to KnownStrings.cs. /// <summary>
/// Standard String Index search operation.
/// </summary>
public static int IndexOf(string src, char ch)
{
return src.IndexOf(ch, StringComparison.Ordinal);
} |
|
Thanks everyone. There was an additional AppModel failure in the test pass results that had to be investigated before these could be merged. |
|
(The PRs are merged individually. This will be closed.) |
@ryalanms I don't think this was fixed. There appear to be two methods with the same parameters but with a slightly different content: https://github.com/dotnet/wpf/blob/master/src/Microsoft.DotNet.Wpf/src/System.Xaml/System/Xaml/MS/Impl/KnownStrings.cs. If you want, I could open a PR later today to remove one of the duplicate method. EDIT: Just saw the PR opened a few minutes ago. Ignore my comment (#4151). |
|
@thomasclaudiushuber: Thanks for catching that. I fixed it when merging everything in to the community test pass branch but not in master. |
Community PR Test Pass 1/25/2021
These PRs will be merged if no regressions are found.
Community PRs included in this test branch:
@lindexi:
Using array empty to replace create an empty array #2843
@GrabYourPitchforks:
Remove custom copy of PtrToStringChars #3117
@benaadams:
Use char.{Last}IndexOf #3285
@ThomasGoulet73:
Use char overload in System.Xaml #3998
@lindex:
Use readonly struct in System.Windows.Input.Manipulations.PointF #4017
Test Matrix