mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2025-01-01 20:38:34 +01:00
Remove Garbage-Collection-specific finalize method overrides, which were flagged by new deprecated OBJC methods warning.
This commit is contained in:
parent
3507313f84
commit
56a39042f3
@ -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);
|
||||
|
@ -25,11 +25,6 @@
|
||||
return FMDBReturnAutoreleased(rs);
|
||||
}
|
||||
|
||||
- (void)finalize {
|
||||
[self close];
|
||||
[super finalize];
|
||||
}
|
||||
|
||||
- (void)dealloc {
|
||||
[self close];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user