Skip to content

Commit

Permalink
Corrected modifier for private method
Browse files Browse the repository at this point in the history
  • Loading branch information
neilharvey committed Nov 26, 2024
1 parent d13ab91 commit 6a19d9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FileSignatures/Formats/AdobePdf.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public override bool IsMatch(Stream stream)
return true;
}

protected bool IsSignatureByte(int value, int signatureIndex)
private bool IsSignatureByte(int value, int signatureIndex)
{
return IsVersionNumber(value, Signature[signatureIndex])
|| value == Signature[signatureIndex];
Expand Down

0 comments on commit 6a19d9c

Please sign in to comment.