diff --git a/src/Lucene.Net.Analysis.Common/Analysis/Br/BrazilianStemmer.cs b/src/Lucene.Net.Analysis.Common/Analysis/Br/BrazilianStemmer.cs index 1fbfca9275..38171df90c 100644 --- a/src/Lucene.Net.Analysis.Common/Analysis/Br/BrazilianStemmer.cs +++ b/src/Lucene.Net.Analysis.Common/Analysis/Br/BrazilianStemmer.cs @@ -1340,7 +1340,8 @@ private void Step4() if (Suffix(RV, "o")) { CT = RemoveSuffix(CT, "o"); - return; + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + //return; } } @@ -1376,7 +1377,8 @@ private void Step5() } CT = RemoveSuffix(CT, "e"); - return; + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + //return; } } diff --git a/src/Lucene.Net.Analysis.Common/Analysis/En/KStemmer.cs b/src/Lucene.Net.Analysis.Common/Analysis/En/KStemmer.cs index 9c224c57ad..416ba651ba 100644 --- a/src/Lucene.Net.Analysis.Common/Analysis/En/KStemmer.cs +++ b/src/Lucene.Net.Analysis.Common/Analysis/En/KStemmer.cs @@ -722,7 +722,8 @@ private void Plural() { Lookup(); } - return; + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + //return; } else { @@ -872,7 +873,8 @@ private void PastTense() word.UnsafeWrite('e'); k = j + 1; // nolookup() - we already tried the "e" ending - return; + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + //return; } } @@ -990,7 +992,8 @@ private void Aspect() word.UnsafeWrite('e'); k = j + 1; // nolookup(); we already tried an 'e' ending - return; + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + //return; } } @@ -1068,7 +1071,8 @@ private void ItyEndings() word.Length = j + 1; k = j; // nolookup(), we already did it. - return; + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + //return; } } @@ -1106,7 +1110,8 @@ private void NceEndings() k = old_k; // nolookup() because we restored the original ending } - return; + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + //return; } /// handle -ness @@ -1126,7 +1131,8 @@ private void NessEndings() } Lookup(); } - return; + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + //return; } /// handle -ism @@ -1142,7 +1148,8 @@ private void IsmEndings() k = j; Lookup(); } - return; + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + //return; } /// this routine deals with -ment endings. @@ -1162,7 +1169,8 @@ private void MentEndings() k = old_k; // nolookup } - return; + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + //return; } /// this routine deals with -ize endings. @@ -1203,7 +1211,8 @@ private void IzeEndings() k = old_k; // nolookup() } - return; + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + //return; } /// handle -ency and -ancy @@ -1229,7 +1238,8 @@ private void NcyEndings() k = j + 3; Lookup(); } - return; + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + //return; } /// handle -able and -ible @@ -1283,7 +1293,8 @@ private void BleEndings() k = old_k; // nolookup() } - return; + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + //return; } /// @@ -1327,7 +1338,8 @@ private void IcEndings() k = j + 2; // nolookup() } - return; + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + //return; } private static char[] ization = "ization".ToCharArray(); @@ -1473,7 +1485,8 @@ private void IonEndings() } // nolookup(); all of the other paths restored original values - return; + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + //return; } /// @@ -1647,7 +1660,8 @@ private void LyEndings() k = j; // nolookup()... we already tried removing the "ly" variant } - return; + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + //return; } /// @@ -1744,7 +1758,8 @@ private void AlEndings() } } - return; + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + //return; } /// @@ -1804,7 +1819,8 @@ private void IveEndings() k = old_k; // nolookup() } - return; + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + //return; } internal KStemmer() diff --git a/src/Lucene.Net.Analysis.Common/Analysis/Nl/DutchStemmer.cs b/src/Lucene.Net.Analysis.Common/Analysis/Nl/DutchStemmer.cs index c9193b759c..86a082e125 100644 --- a/src/Lucene.Net.Analysis.Common/Analysis/Nl/DutchStemmer.cs +++ b/src/Lucene.Net.Analysis.Common/Analysis/Nl/DutchStemmer.cs @@ -242,7 +242,8 @@ private void Step3b(StringBuilder sb) { sb.Remove(index, index + 3 - index); } - return; + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + //return; } } diff --git a/src/Lucene.Net.Suggest/Suggest/DocumentDictionary.cs b/src/Lucene.Net.Suggest/Suggest/DocumentDictionary.cs index eaf1c746b5..6f3c88d01c 100644 --- a/src/Lucene.Net.Suggest/Suggest/DocumentDictionary.cs +++ b/src/Lucene.Net.Suggest/Suggest/DocumentDictionary.cs @@ -176,7 +176,8 @@ public bool MoveNext() { if (contextField.GetBinaryValue() is null && contextField.GetStringValue() is null) { - continue; + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + continue; //NOSONAR } else { diff --git a/src/Lucene.Net/Codecs/BlockTreeTermsReader.cs b/src/Lucene.Net/Codecs/BlockTreeTermsReader.cs index bfd1df80ba..bdea6e25a5 100644 --- a/src/Lucene.Net/Codecs/BlockTreeTermsReader.cs +++ b/src/Lucene.Net/Codecs/BlockTreeTermsReader.cs @@ -1241,7 +1241,8 @@ private void SeekToStartTerm(BytesRef target) return; } } - continue; + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + continue; //NOSONAR } else if (cmp == 0) { diff --git a/src/Lucene.Net/Codecs/Compressing/CompressionMode.cs b/src/Lucene.Net/Codecs/Compressing/CompressionMode.cs index 46ef050322..c8d96ce65c 100644 --- a/src/Lucene.Net/Codecs/Compressing/CompressionMode.cs +++ b/src/Lucene.Net/Codecs/Compressing/CompressionMode.cs @@ -265,7 +265,8 @@ public override void Compress(byte[] bytes, int off, int len, DataOutput output) { if (Debugging.AssertsEnabled) Debugging.Assert(len == 0, "{0}", len); output.WriteVInt32(0); - return; + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + //return; } else { diff --git a/src/Lucene.Net/Codecs/Compressing/LZ4.cs b/src/Lucene.Net/Codecs/Compressing/LZ4.cs index 2e8f68ac1c..998d5aca5a 100644 --- a/src/Lucene.Net/Codecs/Compressing/LZ4.cs +++ b/src/Lucene.Net/Codecs/Compressing/LZ4.cs @@ -640,7 +640,8 @@ public static void CompressHC(byte[] src, int srcOff, int srcLen, DataOutput @ou CopyTo(match2, match1); CopyTo(match3, match2); - goto search3Continue; + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + goto search3Continue; //NOSONAR search3Continue: ; } //search3Break: ; // LUCENENET NOTE: Unreachable diff --git a/src/Lucene.Net/Codecs/MultiLevelSkipListReader.cs b/src/Lucene.Net/Codecs/MultiLevelSkipListReader.cs index baf302a326..4003bdb3d1 100644 --- a/src/Lucene.Net/Codecs/MultiLevelSkipListReader.cs +++ b/src/Lucene.Net/Codecs/MultiLevelSkipListReader.cs @@ -159,7 +159,8 @@ public virtual int SkipTo(int target) { if (!LoadNextSkip(level)) { - continue; + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + continue; //NOSONAR } } else diff --git a/src/Lucene.Net/Support/IO/FileSupport.cs b/src/Lucene.Net/Support/IO/FileSupport.cs index 7d0f7be32a..3e1122273d 100644 --- a/src/Lucene.Net/Support/IO/FileSupport.cs +++ b/src/Lucene.Net/Support/IO/FileSupport.cs @@ -192,7 +192,8 @@ public static FileInfo CreateTempFile(string prefix, string suffix, DirectoryInf catch (IOException e) when (IsFileAlreadyExistsException(e, fileName)) { // If the error was because the file exists, try again. - continue; + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + continue; //NOSONAR } } return new FileInfo(fileName); diff --git a/src/Lucene.Net/Util/Automaton/UTF32ToUTF8.cs b/src/Lucene.Net/Util/Automaton/UTF32ToUTF8.cs index 5d270d0a65..439eb307ad 100644 --- a/src/Lucene.Net/Util/Automaton/UTF32ToUTF8.cs +++ b/src/Lucene.Net/Util/Automaton/UTF32ToUTF8.cs @@ -180,7 +180,8 @@ private void Build(State start, State end, UTF8Sequence startUTF8, UTF8Sequence { // Super degen: just single edge, one UTF8 byte: start.AddTransition(new Transition(startUTF8.ByteAt(upto), endUTF8.ByteAt(upto), end)); - return; + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + //return; } else { diff --git a/src/Lucene.Net/Util/Fst/FSTEnum.cs b/src/Lucene.Net/Util/Fst/FSTEnum.cs index 7b12ee7a42..f963ce02f5 100644 --- a/src/Lucene.Net/Util/Fst/FSTEnum.cs +++ b/src/Lucene.Net/Util/Fst/FSTEnum.cs @@ -216,7 +216,8 @@ protected virtual void DoSeekCeil() Incr(); arc = m_fst.ReadFirstTargetArc(arc, GetArc(m_upto), m_fstReader); targetLabel = TargetLabel; - continue; + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + continue; //NOSONAR } else if (low == arc.NumArcs) { @@ -390,7 +391,8 @@ protected virtual void DoSeekFloor() Incr(); arc = m_fst.ReadFirstTargetArc(arc, GetArc(m_upto), m_fstReader); targetLabel = TargetLabel; - continue; + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + continue; //NOSONAR } else if (high == -1) { diff --git a/src/dotnet/tools/lucene-cli/SourceCode/SourceCodeSectionReader.cs b/src/dotnet/tools/lucene-cli/SourceCode/SourceCodeSectionReader.cs index c2927b3565..a1b422fe99 100644 --- a/src/dotnet/tools/lucene-cli/SourceCode/SourceCodeSectionReader.cs +++ b/src/dotnet/tools/lucene-cli/SourceCode/SourceCodeSectionReader.cs @@ -106,7 +106,8 @@ public override string ReadLine() if (COMMENT_END.IsMatch(line)) { inComment = false; - continue; // Skip this line + // LUCENENET: Redundant jump statements. https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS3626&id=nikcio_lucenenet + continue; // Skip this line //NOSONAR } } else