Skip to content

Commit 203c32d

Browse files
dafedafechhagedorn
andauthored
Update test/hotspot/jtreg/compiler/lib/ir_framework/shared/TestFormat.java
Co-authored-by: Christian Hagedorn <[email protected]>
1 parent f85f341 commit 203c32d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/hotspot/jtreg/compiler/lib/ir_framework/shared/TestFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* Utility class to report a {@link TestFormatException}.
3131
*/
3232
public class TestFormat {
33-
private static final ThreadLocal<List<String>> threadLocalFailures = ThreadLocal.withInitial(ArrayList<String>::new);
33+
private static final ThreadLocal<List<String>> threadLocalFailures = ThreadLocal.withInitial(ArrayList::new);
3434

3535
public static void checkAndReport(boolean test, String failureMessage) {
3636
if (!test) {

0 commit comments

Comments
 (0)