From 5ffe928392ed2e33762a1b572d408ae6eb6f92a6 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Tue, 28 May 2024 22:21:31 +0100 Subject: [PATCH] remove some warnings in unused code --- Prebuild/src/Core/FatalException.cs | 9 --------- Prebuild/src/Core/UnknownLanguageException.cs | 8 -------- Prebuild/src/Core/WarningException.cs | 9 --------- 3 files changed, 26 deletions(-) diff --git a/Prebuild/src/Core/FatalException.cs b/Prebuild/src/Core/FatalException.cs index a302146721..a2884ad421 100644 --- a/Prebuild/src/Core/FatalException.cs +++ b/Prebuild/src/Core/FatalException.cs @@ -71,15 +71,6 @@ namespace Prebuild.Core { } - /// - /// - /// - /// - /// - protected FatalException(SerializationInfo info, StreamingContext context) : base(info, context) - { - } - #endregion } } diff --git a/Prebuild/src/Core/UnknownLanguageException.cs b/Prebuild/src/Core/UnknownLanguageException.cs index 3cdb61cf9f..795a0ca3d0 100644 --- a/Prebuild/src/Core/UnknownLanguageException.cs +++ b/Prebuild/src/Core/UnknownLanguageException.cs @@ -51,13 +51,5 @@ namespace Prebuild.Core { } - /// - /// - /// - /// - /// - protected UnknownLanguageException(SerializationInfo info, StreamingContext context) : base(info, context) - { - } } } diff --git a/Prebuild/src/Core/WarningException.cs b/Prebuild/src/Core/WarningException.cs index 30095f871e..521e9e00bd 100644 --- a/Prebuild/src/Core/WarningException.cs +++ b/Prebuild/src/Core/WarningException.cs @@ -70,15 +70,6 @@ namespace Prebuild.Core { } - /// - /// - /// - /// - /// - protected WarningException(SerializationInfo info, StreamingContext context) : base(info, context) - { - } - #endregion } }