| 1489 | } |
| 1490 | |
| 1491 | void FlaxStorage::Dispose() |
| 1492 | { |
| 1493 | if (IsDisposed()) |
| 1494 | return; |
| 1495 | |
| 1496 | // Close file |
| 1497 | if (CloseFileHandles()) |
| 1498 | { |
| 1499 | LOG(Error, "Cannot close file access for '{}'", _path); |
| 1500 | } |
| 1501 | |
| 1502 | // Release data |
| 1503 | _chunks.ClearDelete(); |
| 1504 | _version = 0; |
| 1505 | } |
| 1506 | |
| 1507 | void FlaxStorage::Tick(double time) |
| 1508 | { |
no test coverage detected