Skip to content

Commit 8fbfe28

Browse files
committed
removed redundant cast
1 parent 01d566e commit 8fbfe28

File tree

1 file changed

+1
-1
lines changed
  • src/Synercoding.FileFormats.Pdf/LowLevel/XRef

1 file changed

+1
-1
lines changed

src/Synercoding.FileFormats.Pdf/LowLevel/XRef/Entry.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public void FillSpan(Span<byte> bytes)
2828
_fillSpanLeadingZero(bytes.Slice(11, 5), GenerationNumber);
2929
bytes[16] = 0x20;
3030

31-
bytes[17] = IsFree ? (byte)0x66 : (byte)0x6E;
31+
bytes[17] = IsFree ? 0x66 : 0x6E;
3232
bytes[18] = 0x0D;
3333
bytes[19] = 0x0A;
3434
}

0 commit comments

Comments
 (0)