diff --git a/Assets/IsoTools/Docs/CHANGELOG.txt b/Assets/IsoTools/Docs/CHANGELOG.txt index 55afcf8..27571b5 100644 --- a/Assets/IsoTools/Docs/CHANGELOG.txt +++ b/Assets/IsoTools/Docs/CHANGELOG.txt @@ -1,3 +1,9 @@ +------------------- +-- Version X.X.X -- +------------------- + +Fix 5.4 warning + ------------------- -- Version 2.4.2 -- ------------------- diff --git a/Assets/IsoTools/Scripts/Internal/IsoAssocList.cs b/Assets/IsoTools/Scripts/Internal/IsoAssocList.cs index bec20b6..18123e9 100644 --- a/Assets/IsoTools/Scripts/Internal/IsoAssocList.cs +++ b/Assets/IsoTools/Scripts/Internal/IsoAssocList.cs @@ -64,4 +64,4 @@ namespace IsoTools.Internal { _dict.Clear(); } } -} +} \ No newline at end of file diff --git a/Assets/IsoTools/Scripts/Internal/IsoList.cs b/Assets/IsoTools/Scripts/Internal/IsoList.cs index 3ebf9e5..2ad5866 100644 --- a/Assets/IsoTools/Scripts/Internal/IsoList.cs +++ b/Assets/IsoTools/Scripts/Internal/IsoList.cs @@ -91,7 +91,7 @@ namespace IsoTools.Internal { get { return _data.Length; } set { if ( value < _size ) { - throw new ArgumentOutOfRangeException("capacity"); + throw new ArgumentOutOfRangeException("value"); } if ( value != _data.Length ) { if ( value > 0 ) { @@ -107,4 +107,4 @@ namespace IsoTools.Internal { } } } -} +} \ No newline at end of file