From b348a4085ca8683627e52f7d9de13302cfb00d7e Mon Sep 17 00:00:00 2001 From: CWX Date: Tue, 28 Jan 2025 19:44:03 +0000 Subject: [PATCH] removed unused methods --- Libraries/Core/Callbacks/DialogueCallbacks.cs | 6 +++--- Libraries/Core/Callbacks/LauncherV2Callbacks.cs | 10 ---------- 2 files changed, 3 insertions(+), 13 deletions(-) diff --git a/Libraries/Core/Callbacks/DialogueCallbacks.cs b/Libraries/Core/Callbacks/DialogueCallbacks.cs index 7c36af62..3f24ab6d 100644 --- a/Libraries/Core/Callbacks/DialogueCallbacks.cs +++ b/Libraries/Core/Callbacks/DialogueCallbacks.cs @@ -308,17 +308,17 @@ public class DialogueCallbacks( public string ChangeMailGroupOwner(string url, ChangeGroupMailOwnerRequest info, string sessionID) { - throw new NotImplementedException(); // Not implemented in Node + return "Not Implemented!"; // Not implemented in Node } public string AddUserToMail(string url, AddUserGroupMailRequest info, string sessionID) { - throw new NotImplementedException(); // Not implemented in Node + return "Not Implemented!"; // Not implemented in Node } public string RemoveUserFromMail(string url, RemoveUserGroupMailRequest info, string sessionID) { - throw new NotImplementedException(); // Not implemented in Node + return "Not Implemented!"; // Not implemented in Node } public bool OnUpdate(long timeSinceLastRun) diff --git a/Libraries/Core/Callbacks/LauncherV2Callbacks.cs b/Libraries/Core/Callbacks/LauncherV2Callbacks.cs index b4adfc5c..4a2f3b01 100644 --- a/Libraries/Core/Callbacks/LauncherV2Callbacks.cs +++ b/Libraries/Core/Callbacks/LauncherV2Callbacks.cs @@ -99,14 +99,4 @@ public class LauncherV2Callbacks( } ); } - - public string Profile() - { - throw new NotImplementedException(); - } - - public string ProfileMods() - { - throw new NotImplementedException(); - } }