From d5d5fab2c954f86cde04c54993712b988e0d0922 Mon Sep 17 00:00:00 2001 From: Nicholas Gautier Date: Sun, 29 Dec 2024 16:53:50 -0700 Subject: [PATCH] Removed [Logging.ps1]::GetRestrictLogging(), not used #73 --- Scripts/Logging.ps1 | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/Scripts/Logging.ps1 b/Scripts/Logging.ps1 index 7b3e2712..25e60839 100644 --- a/Scripts/Logging.ps1 +++ b/Scripts/Logging.ps1 @@ -1,4 +1,4 @@ -<# PowerShell Compact-Archive Tool +<# PowerShell Compact-Archive Tool # Copyright (C) 2025 # # This program is free software: you can redistribute it and/or modify @@ -674,27 +674,6 @@ class Logging #region Public Functions - <# Get Restrict Logging Functionality Controller - # ------------------------------- - # Documentation: - # This function will return the current value of the Restrict Logging Functionality - # variable. This will variable dictates if the logging features are to function - # at the present time. - # ------------------------------- - # Output: - # [bool] Restrict Logging - # $true = All logging functionalities are currently disabled. - # $false = All logging functionalities are currently enabled. - # ------------------------------- - #> - Static [bool] GetRestrictLogging() - { - return [Logging]::RestrictLogging; - } # GetRestrictLogging() - - - - <# Set Restrict Logging Functionality Controller # ------------------------------- # Documentation: