Skip to content

Commit e73411a

Browse files
committed
8304376: Rename t1/t2 classes in com/sun/jdi/CLETest.java to avoid class duplication error in IDE
Reviewed-by: sspitsyn, cjplummer
1 parent a2d8f63 commit e73411a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/jdk/com/sun/jdi/CLETest.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2022, 2023, 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
@@ -35,11 +35,11 @@
3535
import com.sun.jdi.request.*;
3636
import java.util.*;
3737

38-
class t1 {
38+
class CLEClass1 {
3939
public static void foo() {
4040
}
4141
}
42-
class t2 {
42+
class CLEClass2 {
4343
public static void foo() {
4444
}
4545
}
@@ -72,10 +72,10 @@ public static void runTests() {
7272
// verify that the generated MethodEntry events during class loading are not improperly
7373
// co-located as described the the CR.
7474
public static void test1() {
75-
t1.foo(); // BREAKPOINT_1
75+
CLEClass1.foo(); // BREAKPOINT_1
7676
}
7777
public static void test2() {
78-
t2.foo(); // BREAKPOINT_2
78+
CLEClass2.foo(); // BREAKPOINT_2
7979
}
8080

8181
// Tests that MethodEntry, Step, and Breakpoint events that occur at the same

0 commit comments

Comments
 (0)