diff --git a/src/uikit.cs b/src/uikit.cs index 27c8090ae2bd..98fb4dff5a73 100644 --- a/src/uikit.cs +++ b/src/uikit.cs @@ -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))] diff --git a/tests/linker-ios/dont link/TableViewSourceTest.cs b/tests/linker-ios/dont link/TableViewSourceTest.cs index 571804cd9cea..53803b494c55 100644 --- a/tests/linker-ios/dont link/TableViewSourceTest.cs +++ b/tests/linker-ios/dont link/TableViewSourceTest.cs @@ -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). @@ -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)); } } }