Explorar el Código

Remove commented out code.

Stephen Damm hace 6 años
padre
commit
49c28e6731
Se han modificado 1 ficheros con 0 adiciones y 2 borrados
  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)