1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

Remove debug statement

This commit is contained in:
fuyutarow 2019-06-24 06:15:35 +09:00 committed by Alex Medvednikov
parent b3b4278f59
commit ebc3fb9378

View File

@ -556,7 +556,6 @@ fn (s string) trim_left(cutset string) string {
}
fn (s string) trim_right(cutset string) string {
return s
pos := s.last_index(cutset)
if pos == -1 {
return s