| Index: src/snapshot-source-sink.cc
|
| diff --git a/src/snapshot-source-sink.cc b/src/snapshot-source-sink.cc
|
| index b2613b325ece423c9b5ed008c968bade8e747730..fd9472434026d983e1681adb18afc06799285d4a 100644
|
| --- a/src/snapshot-source-sink.cc
|
| +++ b/src/snapshot-source-sink.cc
|
| @@ -50,13 +50,6 @@ void SnapshotByteSink::PutRaw(const byte* data, int number_of_bytes,
|
| }
|
|
|
|
|
| -void SnapshotByteSink::PutBlob(Vector<const byte> blob,
|
| - const char* description) {
|
| - PutInt(blob.length(), description);
|
| - PutRaw(blob.start(), blob.length(), description);
|
| -}
|
| -
|
| -
|
| bool SnapshotByteSource::AtEOF() {
|
| if (0u + length_ - position_ > 2 * sizeof(uint32_t)) return false;
|
| for (int x = position_; x < length_; x++) {
|
|
|