From 47923f54cda96729f24f555b5a39c5ae9f7b9aa5 Mon Sep 17 00:00:00 2001 From: Sebastien Pouliot Date: Mon, 24 Jul 2017 23:32:36 -0400 Subject: [PATCH] [coredata] Update for beta 4 --- src/coredata.cs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/coredata.cs b/src/coredata.cs index 517a4523f539..dc4786a2f902 100644 --- a/src/coredata.cs +++ b/src/coredata.cs @@ -1522,17 +1522,12 @@ interface NSPersistentHistoryChangeRequest [BaseType (typeof(NSPersistentStoreResult))] interface NSPersistentHistoryResult { + [NullAllowed] [Export ("result", ArgumentSemantic.Strong)] NSObject Result { get; } [Export ("resultType")] NSPersistentHistoryResultType ResultType { get; } - - [Export ("initWithResultType:andResult:")] - IntPtr Constructor (NSPersistentHistoryResultType type, NSObject result); - - [Export ("initWithSubresults:")] - IntPtr Constructor (NSObject[] subresults); } [Abstract]