From 73286dd0720653dfaa4e7352c8650c4b30d36928 Mon Sep 17 00:00:00 2001 From: Pavel Djundik Date: Fri, 14 Jun 2019 15:44:34 +0300 Subject: [PATCH] Do not display full license list --- DepotDownloader/Steam3Session.cs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/DepotDownloader/Steam3Session.cs b/DepotDownloader/Steam3Session.cs index 8c38ab78..f7e85554 100644 --- a/DepotDownloader/Steam3Session.cs +++ b/DepotDownloader/Steam3Session.cs @@ -616,13 +616,6 @@ namespace DepotDownloader Console.WriteLine( "Got {0} licenses for account!", licenseList.LicenseList.Count ); Licenses = licenseList.LicenseList; - - IEnumerable licenseQuery = Licenses.Select( lic => - { - return lic.PackageID; - } ); - - Console.WriteLine( "Licenses: {0}", string.Join( ", ", licenseQuery ) ); } private void UpdateMachineAuthCallback( SteamUser.UpdateMachineAuthCallback machineAuth )