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 01d566e commit 8fbfe28Copy full SHA for 8fbfe28
src/Synercoding.FileFormats.Pdf/LowLevel/XRef/Entry.cs
@@ -28,7 +28,7 @@ public void FillSpan(Span<byte> bytes)
28
_fillSpanLeadingZero(bytes.Slice(11, 5), GenerationNumber);
29
bytes[16] = 0x20;
30
31
- bytes[17] = IsFree ? (byte)0x66 : (byte)0x6E;
+ bytes[17] = IsFree ? 0x66 : 0x6E;
32
bytes[18] = 0x0D;
33
bytes[19] = 0x0A;
34
}
0 commit comments