diff --git a/src/structs/GC.js b/src/structs/GC.js index c29ce10d..42d71f73 100644 --- a/src/structs/GC.js +++ b/src/structs/GC.js @@ -11,16 +11,6 @@ export const structGCRefNumber = 0 * @private */ export class GC extends AbstractStruct { - /** - * @param {ID} id - * @param {number} length - */ - constructor (id, length) { - super(id, length) - this.left = null - this.right = null - } - get deleted () { return true }