diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-05-03 12:46:48 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-05-03 12:46:48 -0400 |
commit | 0a2f7e52b9fc1e60fe491b8fd28cf8377f79290b (patch) | |
tree | d71d47797d2b2ad13371b7f9d562aa3e097d330e /src | |
parent | 0530270790a0c2a026377faf0374b719bfed5702 (diff) | |
download | SMAPI-0a2f7e52b9fc1e60fe491b8fd28cf8377f79290b.tar.gz SMAPI-0a2f7e52b9fc1e60fe491b8fd28cf8377f79290b.tar.bz2 SMAPI-0a2f7e52b9fc1e60fe491b8fd28cf8377f79290b.zip |
fix code style
Diffstat (limited to 'src')
-rw-r--r-- | src/StardewModdingAPI/Framework/SGame.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/StardewModdingAPI/Framework/SGame.cs b/src/StardewModdingAPI/Framework/SGame.cs index 3a82963d..1f2bf3ac 100644 --- a/src/StardewModdingAPI/Framework/SGame.cs +++ b/src/StardewModdingAPI/Framework/SGame.cs @@ -1366,8 +1366,8 @@ namespace StardewModdingAPI.Framework /// <param name="enumerable">The enumeration of items to hash.</param> private int GetHash(IEnumerable enumerable) { - var hash = 0; - foreach (var v in enumerable) + int hash = 0; + foreach (object v in enumerable) hash ^= v.GetHashCode(); return hash; } |