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 11/*
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.
33 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44 *
55 * This code is free software; you can redistribute it and/or modify it
@@ -47,14 +47,11 @@ public TempDir(String suffix) {
4747 } catch (IOException e ) {
4848 throw new Error ("Can't create a tmp dir for " + suffix , e );
4949 }
50-
51- System .out .println ("DBG: Temp folder created: '" + path + "'" );
5250 }
5351
5452 private void delete () {
5553 try {
5654 FileUtils .deleteFileTreeWithRetry (path );
57- System .out .println ("DBG: Temp folder deleted: '" + path + "'" );
5855 } catch (IOException exc ) {
5956 throw new Error ("Could not deep delete '" + path + "'" , exc );
6057 }
You can’t perform that action at this time.
0 commit comments