From 709ef3f3983d076fd3fddb435f9c42001c8b68c8 Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Mon, 16 Sep 2013 18:45:48 -0400 Subject: [PATCH] Remove no-long-used AppInfoOverridesCDR var. --- DepotDownloader/Steam3Session.cs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/DepotDownloader/Steam3Session.cs b/DepotDownloader/Steam3Session.cs index 23dac825..ea4abae7 100644 --- a/DepotDownloader/Steam3Session.cs +++ b/DepotDownloader/Steam3Session.cs @@ -34,7 +34,6 @@ namespace DepotDownloader public Dictionary DepotKeys { get; private set; } public Dictionary AppInfo { get; private set; } public Dictionary PackageInfo { get; private set; } - public Dictionary AppInfoOverridesCDR { get; private set; } public SteamClient steamClient; public SteamUser steamUser; @@ -70,7 +69,6 @@ namespace DepotDownloader this.DepotKeys = new Dictionary(); this.AppInfo = new Dictionary(); this.PackageInfo = new Dictionary(); - this.AppInfoOverridesCDR = new Dictionary(); this.steamClient = new SteamClient(); @@ -151,15 +149,6 @@ namespace DepotDownloader Console.WriteLine("Got AppInfo for {0}", app.ID); AppInfo.Add(app.ID, app); - - KeyValue depots = ContentDownloader.GetSteam3AppSection(app.ID, EAppInfoSection.Depots); - if (depots != null) - { - if (depots["OverridesCDDB"].AsBoolean(false)) - { - AppInfoOverridesCDR[app.ID] = true; - } - } } foreach (var app in appInfo.UnknownApps)