mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Remove Garbage-Collection-specific finalize method overrides, which were flagged by new deprecated OBJC methods warning.
This commit is contained in:
@@ -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];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user