forgot to uncomment the auto-deletion of temp files...

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@2930 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
aaron 2010-03-04 20:29:42 +00:00
parent 80cc6bbeb4
commit 54f04dc541
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ public class WalkerTest extends BaseTest {
public File createTempFile(String name, String extension) {
try {
File fl = File.createTempFile(name, extension);
//fl.deleteOnExit();
fl.deleteOnExit();
return fl;
} catch (IOException ex) {
throw new StingException("Cannot create temp file: " + ex.getMessage(), ex);