Skip to content
This repository was archived by the owner on May 1, 2024. It is now read-only.

[housekeeping] Automated PR to fix formatting errors #966

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class ItemTappedEventArgsConverter_Tests
// We know it's deprecated, still good to test it
#pragma warning disable CS0618 // Type or member is obsolete
new object[] { new ItemTappedEventArgs(null, expectedValue), expectedValue },
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jfversluis inconsistent indents after cleanup

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! Interesting, because of the region?

new object[] { new ItemTappedEventArgs(null, null), null },
new object[] { new ItemTappedEventArgs(null, null), null },
#pragma warning restore CS0618 // Type or member is obsolete
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ void ClearTintColor()
break;
}
}
catch (ObjectDisposedException) {
catch (ObjectDisposedException)
{
// We ignore ObjectDisposedException as a workaround of XF issue https://github.com/xamarin/Xamarin.Forms/issues/13889
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -464,4 +464,4 @@ void DestroyPlayedToEndObserver()
DisposeObservers(ref playedToEndObserver);
}
}
}
}