Skip to content

Commit a93d94a

Browse files
committed
checker: remove vweb deprecation for now
1 parent e5f7027 commit a93d94a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vlib/v/checker/checker.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2767,8 +2767,8 @@ fn (mut c Checker) hash_stmt(mut node ast.HashStmt) {
27672767
fn (mut c Checker) import_stmt(node ast.Import) {
27682768
if node.mod == 'x.vweb' {
27692769
println('`x.vweb` is now `veb`. The module is no longer experimental. Simply `import veb` instead of `import x.vweb`.')
2770-
} else if node.mod == 'vweb' {
2771-
println('`vweb` has been deprecated. Please use the more stable and fast `veb`has been deprecated. Please use the more stable and fast `veb`` instead of `import x.vweb`.')
2770+
//} else if node.mod == 'vweb' {
2771+
// println('`vweb` has been deprecated. Please use the more stable and fast `veb` instead')
27722772
}
27732773
c.check_valid_snake_case(node.alias, 'module alias', node.pos)
27742774
for sym in node.syms {

0 commit comments

Comments
 (0)