Skip to content

Commit 7eef64f

Browse files
committed
examples,net.ftp,v.builder: remove remaining matches of rg --multiline --multiline-dotall "continue\n\t+\}\n\t+\}\n\t+return" -B3 -A3
1 parent 3d3f76a commit 7eef64f

4 files changed

Lines changed: 0 additions & 4 deletions

File tree

‎cmd/tools/vwhere/finder_utils.v‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,6 @@ fn collect_v_files(path string, recursive bool) ![]string {
141141
}
142142
if recursive && os.is_dir(file) && !os.is_link(file) {
143143
all_files << collect_v_files(file, recursive)!
144-
continue
145144
}
146145
}
147146
return all_files

‎examples/vcasino/vcasino.v‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ fn get_bet_nbr() int {
5959
if bet_nbr < 0 || bet_nbr > 49 {
6060
println('error: ${line} is not between 0 and 49.')
6161
bet_nbr = -1
62-
continue
6362
}
6463
}
6564
return bet_nbr

‎vlib/net/ftp/ftp.v‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,6 @@ pub fn (mut zftp FTP) dir() ![]string {
232232
if lfile.len > 1 {
233233
trimmed := lfile.after(':')
234234
dir << trimmed#[3..trimmed.len - 1]
235-
continue
236235
}
237236
}
238237
return dir

‎vlib/v/builder/cflags.v‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ fn (mut v Builder) get_os_cflags() []cflag.CFlag {
2727
}
2828
if v.pref.os == .windows && flag.os == 'mingw' && v.pref.ccompiler != 'msvc' {
2929
flags << flag
30-
continue
3130
}
3231
}
3332
return flags

0 commit comments

Comments
 (0)