From 6f218ff20b5f3097bedf9f689a3a4466f94f6a2c Mon Sep 17 00:00:00 2001 From: nattthebear Date: Sun, 12 Jul 2020 11:10:57 -0400 Subject: [PATCH] Remove a benign null reference exception This was in a try catch so you got the null you needed anyway, but it could be confusing to see in a debugger report --- src/BizHawk.Client.Common/config/ConfigExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Client.Common/config/ConfigExtensions.cs b/src/BizHawk.Client.Common/config/ConfigExtensions.cs index dd8bf0ff70..53c7b14bed 100644 --- a/src/BizHawk.Client.Common/config/ConfigExtensions.cs +++ b/src/BizHawk.Client.Common/config/ConfigExtensions.cs @@ -23,7 +23,7 @@ namespace BizHawk.Client.Common { try { - return j.ToObject(type, ConfigService.Serializer); + return j?.ToObject(type, ConfigService.Serializer); } catch {