aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/pickling/TastyBuffer.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotty/tools/dotc/core/pickling/TastyBuffer.scala')
-rw-r--r--src/dotty/tools/dotc/core/pickling/TastyBuffer.scala13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/dotty/tools/dotc/core/pickling/TastyBuffer.scala b/src/dotty/tools/dotc/core/pickling/TastyBuffer.scala
index 0e44dbd76..ba033461e 100644
--- a/src/dotty/tools/dotc/core/pickling/TastyBuffer.scala
+++ b/src/dotty/tools/dotc/core/pickling/TastyBuffer.scala
@@ -61,8 +61,7 @@ class TastyBuffer(initialSize: Int) {
writeLongNat(x.toLong & 0x00000000FFFFFFFFL)
/**
- * Like writeNat, but for longs. This is not the same as
- * writeRaw, which writes in base 256. Note that the
+ * Like writeNat, but for longs. Note that the
* binary representation of LongNat is identical to Nat
* if the long value is in the range Int.MIN_VALUE to
* Int.MAX_VALUE.
@@ -77,16 +76,6 @@ class TastyBuffer(initialSize: Int) {
if (y != 0L) writeNatPrefix(y)
writeByte(((x & 0x7f) | 0x80).toInt)
}
-
- /** Write the `nbytes` least significant bytes of `x` in big endian format */
- def writeRaw(x: Long, nbytes: Int): Unit = {
- def recur(x: Long, n: Int): Unit =
- if (n > 0) {
- recur(x >>> 8, n - 1)
- writeByte((x & 0xff).toInt)
- }
- recur(x, nbytes)
- }
// -- Address handling --------------------------------------------