From 09b4224730fb8552858f1dcfeae7e9b172cd013a Mon Sep 17 00:00:00 2001 From: Adriano Serighelli Date: Tue, 28 Oct 2025 18:58:39 -0300 Subject: [PATCH] =?UTF-8?q?Removido=20c=C3=B3digo=20redundante=20de=20veri?= =?UTF-8?q?fica=C3=A7=C3=A3o=20de=20ID?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit O bloco de código que verificava se o `id` era igual a `"2356193"` foi removido. Esse bloco continha apenas a inicialização e incremento de uma variável local (`i`), sem impacto funcional no restante do código. --- Download Faturas/Fatura.cs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Download Faturas/Fatura.cs b/Download Faturas/Fatura.cs index a357926..ce0fa48 100644 --- a/Download Faturas/Fatura.cs +++ b/Download Faturas/Fatura.cs @@ -259,12 +259,6 @@ string? kind_P = string.Empty; string? kind_FP = string.Empty; - if (this.id == "2356193") - { - int i = 0; - i++; - } - List<(string, float)> insertOthers = new List<(string, float)>(); foreach (Item item in parsedResult.items) {