-
Notifications
You must be signed in to change notification settings - Fork 569
Bump external/xamarin-android-tools and fix NRT warnings #11247
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
base: main
Are you sure you want to change the base?
Changes from all commits
43de5c7
debc21f
f3826a4
e27ea6c
1dc52a7
f82b5ef
872fd86
2179b04
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,12 +12,15 @@ | |
| using System.Text.RegularExpressions; | ||
| using System.Text; | ||
| using Microsoft.Android.Build.Tasks; | ||
| using Microsoft.Build.Utilities; | ||
|
|
||
|
|
||
| namespace Xamarin.Android.Tasks | ||
| { | ||
| class ManagedResourceParser : FileResourceParser | ||
| { | ||
| public ManagedResourceParser (TaskLoggingHelper log) : base (log) { } | ||
|
|
||
| class CompareTuple : IComparer<(int Key, CodeMemberField Value)> | ||
|
Comment on lines
+22
to
24
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🤖 💡 Formatting — Missing blank line between the new constructor and the Rule: Minimal diffs / consistent formatting
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed, added the blank line. |
||
| { | ||
| public int Compare((int Key, CodeMemberField Value) x, (int Key, CodeMemberField Value) y) | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.