Browse Source

replace with correct exception

vpenades 1 year ago
parent
commit
e13c1bbcd1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/SharpGLTF.Core/Collections/LinqDictionary.cs

+ 1 - 1
src/SharpGLTF.Core/Collections/LinqDictionary.cs

@@ -123,7 +123,7 @@ namespace SharpGLTF.Collections
 
 
         public int Count => _Source.Count;
         public int Count => _Source.Count;
 
 
-        public bool IsReadOnly => throw new NotImplementedException();
+        public bool IsReadOnly => throw new InvalidOperationException();
 
 
         public bool ContainsKey(TKey key) { return _Source.ContainsKey(key); }
         public bool ContainsKey(TKey key) { return _Source.ContainsKey(key); }