summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/SnapshotListDiff.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI/Framework/SnapshotListDiff.cs')
-rw-r--r--src/SMAPI/Framework/SnapshotListDiff.cs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/SMAPI/Framework/SnapshotListDiff.cs b/src/SMAPI/Framework/SnapshotListDiff.cs
index b14cacdb..d4d5df50 100644
--- a/src/SMAPI/Framework/SnapshotListDiff.cs
+++ b/src/SMAPI/Framework/SnapshotListDiff.cs
@@ -29,18 +29,10 @@ namespace StardewModdingAPI.Framework
/// <summary>The added values.</summary>
public IEnumerable<T> Added => this.AddedImpl;
- public Microsoft.Xna.Framework.Vector2 Key;
/*********
** Public methods
*********/
-
- public void Update(ICollectionWatcher<T> watcher, Microsoft.Xna.Framework.Vector2 key)
- {
- this.Key = key;
- this.Update(watcher.IsChanged, watcher.Removed, watcher.Added);
- }
-
/// <summary>Update the snapshot.</summary>
/// <param name="isChanged">Whether the value changed since the last update.</param>
/// <param name="removed">The removed values.</param>