Browse Source
Merge pull request #2347 from stefannikolei/sn/nullable/format_pbm
remove nullable disable from Format Pbm
pull/2352/head
James Jackson-South
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
2 deletions
-
src/ImageSharp/Formats/Pbm/PbmDecoderCore.cs
|
|
|
@ -1,6 +1,5 @@ |
|
|
|
// Copyright (c) Six Labors.
|
|
|
|
// Licensed under the Six Labors Split License.
|
|
|
|
#nullable disable |
|
|
|
|
|
|
|
using SixLabors.ImageSharp.IO; |
|
|
|
using SixLabors.ImageSharp.Memory; |
|
|
|
@ -45,7 +44,7 @@ internal sealed class PbmDecoderCore : IImageDecoderInternals |
|
|
|
/// <summary>
|
|
|
|
/// The <see cref="ImageMetadata"/> decoded by this decoder instance.
|
|
|
|
/// </summary>
|
|
|
|
private ImageMetadata metadata; |
|
|
|
private ImageMetadata? metadata; |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of the <see cref="PbmDecoderCore" /> class.
|
|
|
|
|