| 555 | } |
| 556 | |
| 557 | Data FileUtils::getDataFromFile(const ccstd::string &filename) { |
| 558 | Data d; |
| 559 | getContents(filename, &d); |
| 560 | return d; |
| 561 | } |
| 562 | |
| 563 | FileUtils::Status FileUtils::getContents(const ccstd::string &filename, ResizableBuffer *buffer) { |
| 564 | if (filename.empty()) { |
no test coverage detected