From 271922ba61dcce9b09da7dfa905af1d0f21b6362 Mon Sep 17 00:00:00 2001 From: Marcin Czenko Date: Fri, 24 Oct 2025 20:58:30 +0200 Subject: [PATCH] removes legacy "disable_torrent" flags --- communities/codex_archive_downloader.go | 3 --- communities/codex_archive_downloader_test.go | 3 --- communities/codex_client_interface.go | 3 --- communities/codex_index_downloader_integration_test.go | 4 ++-- communities/codex_index_downloader_test.go | 3 --- 5 files changed, 2 insertions(+), 14 deletions(-) diff --git a/communities/codex_archive_downloader.go b/communities/codex_archive_downloader.go index bc2a358..f9ae83b 100644 --- a/communities/codex_archive_downloader.go +++ b/communities/codex_archive_downloader.go @@ -1,6 +1,3 @@ -//go:build !disable_torrent -// +build !disable_torrent - package communities import ( diff --git a/communities/codex_archive_downloader_test.go b/communities/codex_archive_downloader_test.go index 72c2a00..927d280 100644 --- a/communities/codex_archive_downloader_test.go +++ b/communities/codex_archive_downloader_test.go @@ -1,6 +1,3 @@ -//go:build !disable_torrent -// +build !disable_torrent - package communities_test import ( diff --git a/communities/codex_client_interface.go b/communities/codex_client_interface.go index fe34395..b2afee2 100644 --- a/communities/codex_client_interface.go +++ b/communities/codex_client_interface.go @@ -1,6 +1,3 @@ -//go:build !disable_torrent -// +build !disable_torrent - package communities import ( diff --git a/communities/codex_index_downloader_integration_test.go b/communities/codex_index_downloader_integration_test.go index 642c964..1fe7052 100644 --- a/communities/codex_index_downloader_integration_test.go +++ b/communities/codex_index_downloader_integration_test.go @@ -1,5 +1,5 @@ -//go:build integration && !disable_torrent -// +build integration,!disable_torrent +//go:build integration +// +build integration package communities_test diff --git a/communities/codex_index_downloader_test.go b/communities/codex_index_downloader_test.go index 5743d2e..5bee170 100644 --- a/communities/codex_index_downloader_test.go +++ b/communities/codex_index_downloader_test.go @@ -1,6 +1,3 @@ -//go:build !disable_torrent -// +build !disable_torrent - package communities_test import (