all: remove ancient deprecations (#23479)

This commit is contained in:
Emma 2025-01-16 08:36:12 -06:00 committed by GitHub
parent 40b574b409
commit 6b92f8fada
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
27 changed files with 26 additions and 383 deletions

View file

@ -154,14 +154,6 @@ pub fn (mut b Builder) write_string2(s1 string, s2 string) {
}
}
// writeln_string appends the string `s`+`\n` to the buffer
@[deprecated: 'use writeln() instead']
@[deprecated_after: '2024-03-21']
@[inline]
pub fn (mut b Builder) writeln_string(s string) {
b.writeln(s)
}
// go_back discards the last `n` bytes from the buffer
pub fn (mut b Builder) go_back(n int) {
b.trim(b.len - n)