Skip to content
Merged
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
2 changes: 0 additions & 2 deletions src/uikit.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11341,8 +11341,6 @@ interface UITableViewSource {
[Export ("indexPathForPreferredFocusedViewInTableView:")]
[return: NullAllowed]
NSIndexPath GetIndexPathForPreferredFocusedView (UITableView tableView);

// WARNING: If you add more methods here, add them to UITableViewController as well.
}

[BaseType (typeof (UIView))]
Expand Down
4 changes: 2 additions & 2 deletions tests/linker-ios/dont link/TableViewSourceTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ namespace DontLink.UIKit {
[Preserve (AllMembers = true)]
public class TableViewSourceTest {

// UITableViewSource is MonoTouch specific and should include veverything from
// UITableViewSource is Xamarin.iOS specific and should include everything from
// UITableViewDelegate and UITableViewDataSource - but it's easy to forget to
// update its members (e.g. bug 8298 for iOS6 additions).

Expand All @@ -52,7 +52,7 @@ public void ValidateMembers ()
methods.RemoveAll (delegate (string name) {
return tvsource.Contains (name);
});
Assert.That (methods.Count, Is.EqualTo (0), "Incomplete bindings! " + String.Join (", ", methods));
Assert.That (methods.Count, Is.EqualTo (0), "Incomplete bindings! Please add the following members to UITableViewSource: " + String.Join (", ", methods));
}
}
}
Expand Down