aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/stream.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/common/stream.h b/common/stream.h
index 02d170132d..2a8a9e4fc4 100644
--- a/common/stream.h
+++ b/common/stream.h
@@ -388,13 +388,6 @@ public:
* err() or eos() to determine whether an exception occurred.
*/
virtual String readLine();
-
- /**
- * Return the beginning offset in the stream, which defaults to 0.
- *
- * @return the beginning offset of the stream
- */
- virtual uint32 getBeginOffset() { return 0; }
};
@@ -454,7 +447,6 @@ public:
virtual int32 pos() const { return _pos - _begin; }
virtual int32 size() const { return _end - _begin; }
- virtual uint32 getBeginOffset() { return _begin; }
virtual bool seek(int32 offset, int whence = SEEK_SET);
};