We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb45bab commit 9f77793Copy full SHA for 9f77793
test/jdk/java/util/logging/LoggingDeadlock2.java
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright (c) 2006, 2023, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2006, 2024, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
@@ -309,7 +309,7 @@ private static ProcessResults run(Process p) {
309
errAccumulator.join();
310
311
out = outAccumulator.result();
312
- err = errAccumulator.result();
+ err = errAccumulator.result().replaceAll(".* VM warning:.* deprecated.*\\R", "");
313
} catch (Throwable t) {
314
throwable = t;
315
}
0 commit comments