mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 21:27:45 +00:00
LibCore: Remove Stream::is_{readable,writable}
Next to functions like `is_eof` these were really confusing to use, and the `read`/`write` functions should fail anyways if a stream is not readable/writable.
This commit is contained in:
parent
5a346c4297
commit
5061a905ff
7 changed files with 1 additions and 32 deletions
|
@ -356,9 +356,6 @@ private:
|
|||
}
|
||||
|
||||
public:
|
||||
virtual bool is_readable() const override { return true; }
|
||||
virtual bool is_writable() const override { return true; }
|
||||
|
||||
/// Reads into a buffer, with the maximum size being the size of the buffer.
|
||||
/// The amount of bytes read can be smaller than the size of the buffer.
|
||||
/// Returns either the bytes that were read, or an errno in the case of
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue