| 846 | } |
| 847 | |
| 848 | void MountSystem::stopFileChangeNotifications() |
| 849 | { |
| 850 | for ( U32 i = 0; i < mMountList.size(); i++ ) |
| 851 | { |
| 852 | FileSystemChangeNotifier *notifier = mMountList[i].fileSystem->getChangeNotifier(); |
| 853 | |
| 854 | if ( notifier != NULL && notifier->isNotifying() ) |
| 855 | notifier->stopNotifier(); |
| 856 | } |
| 857 | } |
| 858 | |
| 859 | bool MountSystem::createPath(const Path& path) |
| 860 | { |
no test coverage detected