From 7545b7dd87aabd16f9ed93c52a8acaf57f2f582e Mon Sep 17 00:00:00 2001 From: MatthewBeshay <92357869+MatthewBeshay@users.noreply.github.com> Date: Mon, 30 Mar 2026 14:41:27 +1100 Subject: [PATCH] fix: remove extra blank lines to pass clang-format check --- Minecraft.World/Util/StringHelpers.cpp | 1 - Minecraft.World/Util/StringHelpers.h | 1 - 2 files changed, 2 deletions(-) diff --git a/Minecraft.World/Util/StringHelpers.cpp b/Minecraft.World/Util/StringHelpers.cpp index da690b354..9f47f92b8 100644 --- a/Minecraft.World/Util/StringHelpers.cpp +++ b/Minecraft.World/Util/StringHelpers.cpp @@ -36,7 +36,6 @@ bool equalsIgnoreCase(const std::wstring& a, const std::wstring& b) { return out; } - std::wstring convStringToWstring(const std::string& converting) { std::wstring converted(converting.length(), L' '); copy(converting.begin(), converting.end(), converted.begin()); diff --git a/Minecraft.World/Util/StringHelpers.h b/Minecraft.World/Util/StringHelpers.h index 8ed4bc987..871e46d87 100644 --- a/Minecraft.World/Util/StringHelpers.h +++ b/Minecraft.World/Util/StringHelpers.h @@ -29,7 +29,6 @@ T _fromHEXString(const std::wstring& s) { return t; } - std::wstring convStringToWstring(const std::string& converting); std::wstring u16string_to_wstring(const std::u16string& converting); std::u16string wstring_to_u16string(const std::wstring& converting);