Skip to content

Commit

Permalink
TagSoup.Parser: Suppressed SonarCloud S5332 because the URLs are only…
Browse files Browse the repository at this point in the history
… used for naming purposes (#881)
  • Loading branch information
NightOwl888 authored Oct 19, 2023
1 parent 179356f commit cd2bf6f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Lucene.Net.Benchmark/Support/TagSoup/Parser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
using Sax.Helpers;
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.IO;
using System.Text;
using JCG = J2N.Collections.Generic;
Expand All @@ -31,6 +32,8 @@ namespace TagSoup
/// <summary>
/// The SAX parser class.
/// </summary>
[SuppressMessage("CodeQuality", "IDE0079:Remove unnecessary suppression", Justification = "This is a SonarCloud issue")]
[SuppressMessage("Security Hotspot", "S5332:Using clear-text protocols is security-sensitive", Justification = "URLs are only for naming purposes")]
public class Parser : DefaultHandler, IScanHandler, IXMLReader, ILexicalHandler
{
// XMLReader implementation
Expand Down

0 comments on commit cd2bf6f

Please sign in to comment.