mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 20:41:22 +07:00
- update copyright - fix warnings - fix tests - revert variable names - support not used variables for idea debugger GitOrigin-RevId: 1d9810f75417aadc18943277a4eb9de152dd9008
28 lines
451 B
Plaintext
28 lines
451 B
Plaintext
package pkg;
|
|
|
|
public class TestInheritanceChainCycle extends TestInheritanceChainCycle {
|
|
public void printMessage() {
|
|
System.out.println("Hello, bug!");// 21 22 23
|
|
}// 24
|
|
}
|
|
|
|
class 'pkg/TestInheritanceChainCycle' {
|
|
method 'printMessage ()V' {
|
|
0 4
|
|
1 4
|
|
2 4
|
|
3 4
|
|
4 4
|
|
5 4
|
|
6 4
|
|
7 4
|
|
8 5
|
|
}
|
|
}
|
|
|
|
Lines mapping:
|
|
21 <-> 5
|
|
22 <-> 5
|
|
23 <-> 5
|
|
24 <-> 6
|