diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2019-02-19 21:21:36 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-19 21:21:36 -0500 |
| commit | b43317c5e10aeac5dd1510c3957fa59f453cf2c1 (patch) | |
| tree | cabde8df22fd180e17af59e8585299026000f4e1 /MediaBrowser.Model/Configuration/BaseApplicationConfiguration.cs | |
| parent | 24b76dbed85967a7acd495d21c99d9b857055bb1 (diff) | |
| parent | 7554f6355195443b721a9b65f04ef4f9f4c097e9 (diff) | |
Merge pull request #830 from Bond-009/update
Removed remaining self-update code
Diffstat (limited to 'MediaBrowser.Model/Configuration/BaseApplicationConfiguration.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/BaseApplicationConfiguration.cs | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/MediaBrowser.Model/Configuration/BaseApplicationConfiguration.cs b/MediaBrowser.Model/Configuration/BaseApplicationConfiguration.cs index ce4ef1cfe..6a1a0f090 100644 --- a/MediaBrowser.Model/Configuration/BaseApplicationConfiguration.cs +++ b/MediaBrowser.Model/Configuration/BaseApplicationConfiguration.cs @@ -7,20 +7,6 @@ namespace MediaBrowser.Model.Configuration /// </summary> public class BaseApplicationConfiguration { - // TODO: @bond Remove? - /// <summary> - /// Gets or sets a value indicating whether [enable debug level logging]. - /// </summary> - /// <value><c>true</c> if [enable debug level logging]; otherwise, <c>false</c>.</value> - public bool EnableDebugLevelLogging { get; set; } - - /// <summary> - /// Enable automatically and silently updating of the application - /// </summary> - /// <value><c>true</c> if [enable auto update]; otherwise, <c>false</c>.</value> - public bool EnableAutoUpdate { get; set; } - - // TODO: @bond Remove? /// <summary> /// The number of days we should retain log files /// </summary> @@ -44,7 +30,6 @@ namespace MediaBrowser.Model.Configuration /// </summary> public BaseApplicationConfiguration() { - EnableAutoUpdate = true; LogFileRetentionDays = 3; } } |
