diff options
| author | Bond_009 <Bond.009@outlook.com> | 2020-05-25 23:52:51 +0200 |
|---|---|---|
| committer | Bond_009 <Bond.009@outlook.com> | 2020-05-25 23:52:51 +0200 |
| commit | 10e381f66f957ffa2e8339a02b0c970086673739 (patch) | |
| tree | 8890b624e81a8183462206621ade0e0138172d22 /DvdLib | |
| parent | 777c9c7bc974fafb09e6a5a6b23bd29cf8529af9 (diff) | |
Fix some 'bugs' flagged by sonarcloud
Diffstat (limited to 'DvdLib')
| -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) { |
