From c8bce3a84984432ed37e695bda6e7467b26fac30 Mon Sep 17 00:00:00 2001 From: Aidan M Date: Fri, 5 Jul 2024 12:13:31 +0100 Subject: [PATCH] Change `String` to `string` to align more with overall style --- Wabbajack.App.Wpf/Util/UIUtils.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wabbajack.App.Wpf/Util/UIUtils.cs b/Wabbajack.App.Wpf/Util/UIUtils.cs index 53e45eff..b4fc10ac 100644 --- a/Wabbajack.App.Wpf/Util/UIUtils.cs +++ b/Wabbajack.App.Wpf/Util/UIUtils.cs @@ -66,7 +66,7 @@ namespace Wabbajack public static void OpenFolder(AbsolutePath path) { - String folderPath = path.ToString(); + string folderPath = path.ToString(); if (!folderPath.EndsWith(Path.DirectorySeparatorChar.ToString())) { folderPath += Path.DirectorySeparatorChar.ToString();