Delete compile errors for deprecated decls

This commit is contained in:
Ryan Liptak
2024-05-02 20:26:48 -07:00
committed by Andrew Kelley
parent 3b5be9fb6e
commit a52f12afc9
8 changed files with 0 additions and 103 deletions

View File

@@ -591,14 +591,6 @@ pub fn WriteStream(
try encodeJsonString(s, self.options, self.stream);
self.valueDone();
}
pub const arrayElem = @compileError("Deprecated; You don't need to call this anymore.");
pub const emitNull = @compileError("Deprecated; Use .write(null) instead.");
pub const emitBool = @compileError("Deprecated; Use .write() instead.");
pub const emitNumber = @compileError("Deprecated; Use .write() instead.");
pub const emitString = @compileError("Deprecated; Use .write() instead.");
pub const emitJson = @compileError("Deprecated; Use .write() instead.");
pub const writePreformatted = @compileError("Deprecated; Use .print(\"{s}\", .{s}) instead.");
};
}