Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[JENKINS-19752] Forgotten debug statement
(cherry picked from commit ca067fd)
  • Loading branch information
olivergondza committed Oct 18, 2013
1 parent 2652a3a commit 9e1e164
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -171,7 +171,7 @@ public void zipDownload() throws Exception {

private File download(UnexpectedPage page) throws IOException {

File file = new File("/home/ogondza/zipfile");//File.createTempFile("DirectoryBrowserSupport", "zipDownload");
File file = File.createTempFile("DirectoryBrowserSupport", "zipDownload");
file.delete();
Util.copyStreamAndClose(page.getInputStream(), new FileOutputStream(file));

Expand Down

0 comments on commit 9e1e164

Please sign in to comment.