Forráskód Böngészése

Remove commented out code.

Stephen Damm 6 éve
szülő
commit
49c28e6731
1 módosított fájl, 0 hozzáadás és 2 törlés
  1. 0 2
      SongBrowserPlugin/DataAccess/Network/Downloader.cs

+ 0 - 2
SongBrowserPlugin/DataAccess/Network/Downloader.cs

@@ -123,13 +123,11 @@ namespace SongBrowserPlugin
                     docPath = docPath.Substring(0, docPath.Length - 5);
                     docPath = docPath.Substring(0, docPath.LastIndexOf("/"));
                     customSongsPath = docPath + "/CustomSongs/" + songInfo.id + "/";
-                    //zipPath = customSongsPath + songInfo.id + ".zip";
                     if (!Directory.Exists(customSongsPath))
                     {
                         Directory.CreateDirectory(customSongsPath);
                     }
                     zipStream = new MemoryStream(data);
-                    //File.WriteAllBytes(zipPath, data);
                     Logger.Info("Downloaded zip!");
                 }
                 catch (Exception e)