File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2024, 2025, Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -47,14 +47,11 @@ public TempDir(String suffix) {
47
47
} catch (IOException e ) {
48
48
throw new Error ("Can't create a tmp dir for " + suffix , e );
49
49
}
50
-
51
- System .out .println ("DBG: Temp folder created: '" + path + "'" );
52
50
}
53
51
54
52
private void delete () {
55
53
try {
56
54
FileUtils .deleteFileTreeWithRetry (path );
57
- System .out .println ("DBG: Temp folder deleted: '" + path + "'" );
58
55
} catch (IOException exc ) {
59
56
throw new Error ("Could not deep delete '" + path + "'" , exc );
60
57
}
You can’t perform that action at this time.
0 commit comments