mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
all: remove ancient deprecations (#23479)
This commit is contained in:
parent
40b574b409
commit
6b92f8fada
27 changed files with 26 additions and 383 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue