We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e72f19e commit 216c93dCopy full SHA for 216c93d
TonLibDotNet/Utils/AddressValidator.cs
@@ -107,10 +107,12 @@ public static bool TryParseAddress(
107
}
108
109
110
+#pragma warning disable S2583 // https://github.com/SonarSource/sonar-dotnet/issues/5601 S2583 FP: Variable change not detected inside a loop
111
if (safeFound && unsafeFound)
112
{
113
return false;
114
115
+#pragma warning restore S2583 // Conditionally executed code should be reachable
116
117
urlSafe = !unsafeFound;
118
0 commit comments