diff --git a/src/ox/fs/filestore.hpp b/src/ox/fs/filestore.hpp index 2db144b32..a6882f560 100644 --- a/src/ox/fs/filestore.hpp +++ b/src/ox/fs/filestore.hpp @@ -52,14 +52,6 @@ class FileStore { */ void resize(); - /** - * Writes the given data to a "file" with the given id. - * @param id the id of the file - * @param data the contents of the file - * @param dataLen the number of bytes data points to - */ - int write(void *data, FsSize_t dataLen, uint8_t fileType = 0); - /** * Writes the given data to a "file" with the given id. * @param id the id of the file @@ -228,11 +220,6 @@ void FileStore::resize() { m_size = ptr(last) + last->size(); } -template -int FileStore::write(void *data, FsSize_t dataLen, uint8_t fileType) { - return 1; -} - template int FileStore::write(InodeId_t id, void *data, FsSize_t dataLen, uint8_t fileType) { auto retval = 1;