From 56d8293ae0798fea7538a2c52b2ee7e49632c54b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Tesa=C5=99?= Date: Wed, 5 Aug 2026 23:58:33 +0200 Subject: [PATCH] Restore formatting and remove unused import --- core/net/url.odin | 1 - tests/core/net/test_core_net.odin | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/core/net/url.odin b/core/net/url.odin index 1a8028ad0..b5bd6d917 100644 --- a/core/net/url.odin +++ b/core/net/url.odin @@ -19,7 +19,6 @@ package net */ import "core:strings" -import "core:strconv" import "core:unicode/utf8" import "core:encoding/hex" diff --git a/tests/core/net/test_core_net.odin b/tests/core/net/test_core_net.odin index 6a6111a29..f360f95cd 100644 --- a/tests/core/net/test_core_net.odin +++ b/tests/core/net/test_core_net.odin @@ -304,7 +304,7 @@ client_sends_server_data :: proc(t: ^testing.T) { r.length, r.err = net.recv_tcp(client, r.data[:]) return } - + thread_data := [2]Thread_Data{} wg: sync.Wait_Group @@ -313,7 +313,7 @@ client_sends_server_data :: proc(t: ^testing.T) { thread_data[0].t = t thread_data[0].wg = &wg thread_data[0].tid = thread.create_and_start_with_data(&thread_data[0], tcp_server, context) - + sync.wait_group_wait(&wg) sync.wait_group_add(&wg, 2)