diff options
| author | Anthony Lavado <anthony@lavado.ca> | 2020-06-03 02:45:22 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-03 02:45:22 -0400 |
| commit | 91b089c0fac7e6b6831f5768ab5e23ee5151d0be (patch) | |
| tree | 069058c49ed99cc98cd0c3a1c4c37f159bb69f48 /DvdLib/Ifo/Program.cs | |
| parent | b9618c8c015b5a49110c3abad8659525bdfac4fd (diff) | |
| parent | b61ee09a36ed38958dc3897be6a30ca8ad191813 (diff) | |
Merge pull request #3179 from Bond-009/bugs
Fix some 'bugs' flagged by sonarcloud
Diffstat (limited to 'DvdLib/Ifo/Program.cs')
| -rw-r--r-- | DvdLib/Ifo/Program.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/DvdLib/Ifo/Program.cs b/DvdLib/Ifo/Program.cs index 9f6251270..3d94fa7dc 100644 --- a/DvdLib/Ifo/Program.cs +++ b/DvdLib/Ifo/Program.cs @@ -6,7 +6,7 @@ namespace DvdLib.Ifo { public class Program { - public readonly List<Cell> Cells; + public IReadOnlyList<Cell> Cells { get; } public Program(List<Cell> cells) { |
