Remove Garbage-Collection-specific finalize method overrides, which were flagged by new deprecated OBJC methods warning.

This commit is contained in:
Daniel Jalkut 2018-01-29 11:10:43 -05:00
parent 3507313f84
commit 56a39042f3
2 changed files with 0 additions and 15 deletions

View File

@ -47,11 +47,6 @@
return self;
}
- (void)finalize {
[self close];
[super finalize];
}
- (void)dealloc {
[self close];
FMDBRelease(_openResultSets);
@ -1398,11 +1393,6 @@ void FMDBBlockSQLiteCallBackFunction(sqlite3_context *context, int argc, sqlite3
@synthesize useCount=_useCount;
@synthesize inUse=_inUse;
- (void)finalize {
[self close];
[super finalize];
}
- (void)dealloc {
[self close];
FMDBRelease(_query);

View File

@ -25,11 +25,6 @@
return FMDBReturnAutoreleased(rs);
}
- (void)finalize {
[self close];
[super finalize];
}
- (void)dealloc {
[self close];