[AddressBookUI] Fix indentation. (#8924)

This was just too annoying to ignore.

Co-authored-by: Rolf Bjarne Kvinge <rolf@xamarin.com>
This commit is contained in:
monojenkins 2020-06-23 02:56:13 -04:00 коммит произвёл GitHub
Родитель 5f71492418
Коммит e62fffeb6d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 12 добавлений и 12 удалений

Просмотреть файл

@ -104,30 +104,30 @@ namespace AddressBookUI {
[Preserve (Conditional = true)]
public override bool ShouldContinue (ABPeoplePickerNavigationController peoplePicker, ABPerson selectedPerson)
{
var e = new ABPeoplePickerSelectPersonEventArgs (selectedPerson);
peoplePicker.OnSelectPerson (e);
return e.Continue;
var e = new ABPeoplePickerSelectPersonEventArgs (selectedPerson);
peoplePicker.OnSelectPerson (e);
return e.Continue;
}
[Preserve (Conditional = true)]
public override bool ShouldContinue (ABPeoplePickerNavigationController peoplePicker, ABPerson selectedPerson, int propertyId, int identifier)
{
ABPersonProperty property = ABPersonPropertyId.ToPersonProperty (propertyId);
int? id = identifier == ABRecord.InvalidPropertyId ? null : (int?) identifier;
ABPersonProperty property = ABPersonPropertyId.ToPersonProperty (propertyId);
int? id = identifier == ABRecord.InvalidPropertyId ? null : (int?) identifier;
var e = new ABPeoplePickerPerformActionEventArgs (selectedPerson, property, id);
peoplePicker.OnPerformAction (e);
return e.Continue;
var e = new ABPeoplePickerPerformActionEventArgs (selectedPerson, property, id);
peoplePicker.OnPerformAction (e);
return e.Continue;
}
[Preserve (Conditional = true)]
public override void DidSelectPerson (ABPeoplePickerNavigationController peoplePicker, ABPerson selectedPerson, int propertyId, int identifier)
{
ABPersonProperty property = ABPersonPropertyId.ToPersonProperty (propertyId);
int? id = identifier == ABRecord.InvalidPropertyId ? null : (int?) identifier;
ABPersonProperty property = ABPersonPropertyId.ToPersonProperty (propertyId);
int? id = identifier == ABRecord.InvalidPropertyId ? null : (int?) identifier;
var e = new ABPeoplePickerPerformAction2EventArgs (selectedPerson, property, id);
peoplePicker.OnPerformAction2 (e);
var e = new ABPeoplePickerPerformAction2EventArgs (selectedPerson, property, id);
peoplePicker.OnPerformAction2 (e);
}
[Preserve (Conditional = true)]