mirror of
https://github.com/JetBrains/JetBrainsRuntime.git
synced 2025-12-06 09:29:38 +01:00
8354255: [jittester] Remove TempDir debug output
Backport-of: 1fc1cc5da9
This commit is contained in:
committed by
Vitaly Provodin
parent
0feef9f752
commit
542eeb11e5
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2024, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@@ -47,14 +47,11 @@ public class TempDir {
|
||||
} catch (IOException e) {
|
||||
throw new Error("Can't create a tmp dir for " + suffix, e);
|
||||
}
|
||||
|
||||
System.out.println("DBG: Temp folder created: '" + path + "'");
|
||||
}
|
||||
|
||||
private void delete() {
|
||||
try {
|
||||
FileUtils.deleteFileTreeWithRetry(path);
|
||||
System.out.println("DBG: Temp folder deleted: '" + path + "'");
|
||||
} catch (IOException exc) {
|
||||
throw new Error("Could not deep delete '" + path + "'", exc);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user