Revision: 13976
http://sourceforge.net/p/skim-app/code/13976
Author: hofman
Date: 2023-12-24 16:33:59 +0000 (Sun, 24 Dec 2023)
Log Message:
-----------
no need to copy array
Modified Paths:
--------------
trunk/SKBookmark.m
trunk/SKDownloadController.m
Modified: trunk/SKBookmark.m
===================================================================
--- trunk/SKBookmark.m 2023-12-24 15:56:54 UTC (rev 13975)
+++ trunk/SKBookmark.m 2023-12-24 16:33:59 UTC (rev 13976)
@@ -653,7 +653,7 @@
}
- (NSArray *)children {
- return [children copy];
+ return children;
}
- (NSUInteger)countOfChildren {
Modified: trunk/SKDownloadController.m
===================================================================
--- trunk/SKDownloadController.m 2023-12-24 15:56:54 UTC (rev 13975)
+++ trunk/SKDownloadController.m 2023-12-24 16:33:59 UTC (rev 13976)
@@ -215,7 +215,7 @@
#pragma mark Accessors
- (NSArray *)downloads {
- return [downloads copy];
+ return downloads;
}
- (NSUInteger)countOfDownloads {
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
_______________________________________________
Skim-app-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/skim-app-commit