Skip to content

Commit

Permalink
fix: removing dependency on JetBrains.Annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
James-Frowen committed Aug 16, 2022
1 parent d0f78c9 commit 2e1263e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Assets/Mirage/Runtime/Collections/SyncDictionary.cs
@@ -1,7 +1,6 @@
using System;
using System.Collections;
using System.Collections.Generic;
using JetBrains.Annotations;
using Mirage.Serialization;

namespace Mirage.Collections
Expand Down Expand Up @@ -336,7 +335,7 @@ public bool Contains(KeyValuePair<TKey, TValue> item)
return TryGetValue(item.Key, out var val) && EqualityComparer<TValue>.Default.Equals(val, item.Value);
}

public void CopyTo([NotNull] KeyValuePair<TKey, TValue>[] array, int arrayIndex)
public void CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayIndex)
{
if (arrayIndex < 0 || arrayIndex > array.Length)
{
Expand Down

0 comments on commit 2e1263e

Please sign in to comment.