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:
parent
80cc6bbeb4
commit
54f04dc541
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue