Skip to content

Commit 8872ebe

Browse files
committed
Remove false positives from searches
1 parent a5d1773 commit 8872ebe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/libraries/System.Private.CoreLib/src/System/Text/DecoderReplacementFallback.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public DecoderReplacementFallbackBuffer(DecoderReplacementFallback fallback)
9393
public override bool Fallback(byte[] bytesUnknown, int index)
9494
{
9595
// We expect no previous fallback in our buffer
96-
// We can't call recursively but others might (note, we don't test on last char!!!)
96+
// We can't call recursively but others might (note, we don't test on last char!)
9797
if (_fallbackCount >= 1)
9898
{
9999
ThrowLastBytesRecursive(bytesUnknown);

src/libraries/System.Threading.Tasks/tests/CancellationTokenTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,7 @@ public static void ODEWhenDisposingLinkedCTS()
861861
}
862862
else
863863
{
864-
Assert.True(false, string.Format("Bug901737_ODEWhenDisposingLinkedCTS: - Exception Occurred (not an ODE!!): " + ex));
864+
Assert.True(false, string.Format("Bug901737_ODEWhenDisposingLinkedCTS: - Exception Occurred (not an ODE!): " + ex));
865865
}
866866
}
867867
}

0 commit comments

Comments
 (0)