| 72 | } |
| 73 | |
| 74 | void BoxedContainer::saveInstalledPackageList() { |
| 75 | BString path = GlobalSettings::getRootFolder(this).stringByApppendingPath("installed.txt"); |
| 76 | writeLinesToFile(path, installedPackages); |
| 77 | } |
| 78 | |
| 79 | BoxedContainer* BoxedContainer::createContainer(BString dirPath, BString name, std::shared_ptr<FileSystemZip> fileSystem) { |
| 80 | BoxedContainer* container = new BoxedContainer(); |
nothing calls this directly
no test coverage detected