File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
35
35
import com .sun .jdi .request .*;
36
36
import java .util .*;
37
37
38
- class t1 {
38
+ class CLEClass1 {
39
39
public static void foo () {
40
40
}
41
41
}
42
- class t2 {
42
+ class CLEClass2 {
43
43
public static void foo () {
44
44
}
45
45
}
@@ -72,10 +72,10 @@ public static void runTests() {
72
72
// verify that the generated MethodEntry events during class loading are not improperly
73
73
// co-located as described the the CR.
74
74
public static void test1 () {
75
- t1 .foo (); // BREAKPOINT_1
75
+ CLEClass1 .foo (); // BREAKPOINT_1
76
76
}
77
77
public static void test2 () {
78
- t2 .foo (); // BREAKPOINT_2
78
+ CLEClass2 .foo (); // BREAKPOINT_2
79
79
}
80
80
81
81
// Tests that MethodEntry, Step, and Breakpoint events that occur at the same
You can’t perform that action at this time.
0 commit comments