Skip to content

Commit 81d47f4

Browse files
committed
Remove some missed Serializable attributes
1 parent d52b16c commit 81d47f4

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

src/ImageSharp/Formats/Webp/Lossy/Vp8BandProbas.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
// Copyright (c) Six Labors.
22
// Licensed under the Six Labors Split License.
33

4-
using System.Text.Json.Serialization;
5-
64
namespace SixLabors.ImageSharp.Formats.Webp.Lossy;
75

86
/// <summary>
97
/// All the probabilities associated to one band.
108
/// </summary>
11-
[Serializable]
129
internal class Vp8BandProbas
1310
{
1411
/// <summary>

src/ImageSharp/Formats/Webp/Lossy/Vp8Residual.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,14 @@
77
using System.Runtime.InteropServices;
88
using System.Runtime.Intrinsics;
99
using System.Runtime.Intrinsics.X86;
10-
using System.Text.Json.Serialization;
1110

1211
namespace SixLabors.ImageSharp.Formats.Webp.Lossy;
1312

1413
/// <summary>
1514
/// On-the-fly info about the current set of residuals.
1615
/// </summary>
17-
[Serializable]
1816
internal class Vp8Residual
1917
{
20-
public Vp8Residual()
21-
{
22-
}
23-
2418
public int First { get; set; }
2519

2620
public int Last { get; set; }

0 commit comments

Comments
 (0)