summaryrefslogtreecommitdiff
path: root/Source/Kernel/VFS/FileNode.class.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Kernel/VFS/FileNode.class.h')
-rw-r--r--Source/Kernel/VFS/FileNode.class.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Source/Kernel/VFS/FileNode.class.h b/Source/Kernel/VFS/FileNode.class.h
index ac170ae..7ab617f 100644
--- a/Source/Kernel/VFS/FileNode.class.h
+++ b/Source/Kernel/VFS/FileNode.class.h
@@ -21,7 +21,6 @@ class FileNode : public FSNode {
bool used() { return (m_readers != 0 or m_writers != 0); }
bool writable() { return m_fs->isWritable(); }
- //protected:
u32int read(u64int position, u32int max_length, u8int *data) {
return m_fs->read(this, position, max_length, data);
}