From 9a2cfcdf0fe37fb31af48c7ab1494b241afc8b1c Mon Sep 17 00:00:00 2001 From: "waffle.lord" Date: Sat, 30 Apr 2022 12:02:16 -0400 Subject: [PATCH] remove duplicate reactiveUI calls --- Patcher/PatchClient/Program.cs | 3 +-- Patcher/PatchGenerator/Program.cs | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Patcher/PatchClient/Program.cs b/Patcher/PatchClient/Program.cs index a69c6d5..71cb0a8 100644 --- a/Patcher/PatchClient/Program.cs +++ b/Patcher/PatchClient/Program.cs @@ -24,8 +24,7 @@ namespace PatchClient return AppBuilder.Configure() .UseReactiveUI() .UsePlatformDetect() - .LogToTrace() - .UseReactiveUI(); + .LogToTrace(); } } } diff --git a/Patcher/PatchGenerator/Program.cs b/Patcher/PatchGenerator/Program.cs index 43549a2..75d265e 100644 --- a/Patcher/PatchGenerator/Program.cs +++ b/Patcher/PatchGenerator/Program.cs @@ -24,8 +24,7 @@ namespace PatchGenerator return AppBuilder.Configure() .UseReactiveUI() .UsePlatformDetect() - .LogToTrace() - .UseReactiveUI(); + .LogToTrace(); } } }