enforce code style with Boolean

This commit is contained in:
Syping 2025-11-23 06:22:48 +01:00
parent c131a7532e
commit 4cc95309a2
3 changed files with 8 additions and 8 deletions

View file

@ -29,7 +29,7 @@ internal class Jpeg {
return jpegStream.ToArray();
}
internal static Byte[] GetJpeg(Stream input, bool imageAsIs, out Size size) {
internal static Byte[] GetJpeg(Stream input, Boolean imageAsIs, out Size size) {
try {
if (imageAsIs) {
using MemoryStream jpegStream = new();