From 0dc240fa2418572b1837313b96431cdd2adada23 Mon Sep 17 00:00:00 2001 From: CWX Date: Thu, 23 Jan 2025 20:59:44 +0000 Subject: [PATCH] format kek --- Libraries/Core/Utils/JsonUtil.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Libraries/Core/Utils/JsonUtil.cs b/Libraries/Core/Utils/JsonUtil.cs index e69bef53..901fc5bd 100644 --- a/Libraries/Core/Utils/JsonUtil.cs +++ b/Libraries/Core/Utils/JsonUtil.cs @@ -52,7 +52,6 @@ public class JsonUtil return string.IsNullOrEmpty(json) ? null : JsonSerializer.Deserialize(json, type, jsonSerializerOptionsNoIndent); } - public string? Serialize(T? obj, bool indented = false) { return obj == null ? null : JsonSerializer.Serialize(obj, indented ? jsonSerializerOptionsIndented : jsonSerializerOptionsNoIndent);