mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 23:57:18 +00:00
Fix warnings from nullabilty
This commit is contained in:
@@ -8,8 +8,16 @@ namespace SabreTools.Models.Compression.Quantum
|
||||
|
||||
public int Entries;
|
||||
|
||||
#if NET48
|
||||
public ModelSymbol[] Symbols;
|
||||
#else
|
||||
public ModelSymbol[]? Symbols;
|
||||
#endif
|
||||
|
||||
#if NET48
|
||||
public ushort[] LookupTable = new ushort[256];
|
||||
#else
|
||||
public ushort[]? LookupTable = new ushort[256];
|
||||
#endif
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user