Skip to content

Commit 994b89d

Browse files
committed
8354255: [jittester] Remove TempDir debug output
Backport-of: 1fc1cc5da9a38cf936636a72f9b8a4c246ceaab4
1 parent 861d3ec commit 994b89d

File tree

1 file changed

+1
-4
lines changed
  • test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester

1 file changed

+1
-4
lines changed

test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester/TempDir.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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
}

0 commit comments

Comments
 (0)