Bug 1820168 - Remove unused method -[nsCursorManager dispose]. r=mac-reviewers,bradwerth

Differential Revision: https://phabricator.services.mozilla.com/D172483
This commit is contained in:
Markus Stange 2023-03-14 16:30:05 +00:00
Родитель 16d90191d4
Коммит edb89e49ae
2 изменённых файлов: 0 добавлений и 6 удалений

Просмотреть файл

@ -26,7 +26,6 @@
- (void)setNonCustomCursor:(const nsIWidget::Cursor&)aCursor;
+ (nsCursorManager*)sharedInstance;
+ (void)dispose;
@end
@interface NSCursor (Undocumented)

Просмотреть файл

@ -37,11 +37,6 @@ static constexpr nsCursor kCustomCursor = eCursorCount;
return gInstance;
}
+ (void)dispose {
[gInstance release];
gInstance = nil;
}
+ (NSCursor*)freshCursorWithType:(enum nsCursor)aCursor {
switch (aCursor) {
case eCursor_standard: