You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
414 B
28 lines
414 B
package pkg;
|
|
|
|
public final class TestPrivateEmptyConstructor {
|
|
private TestPrivateEmptyConstructor() {
|
|
}// 4
|
|
|
|
public final void test() {
|
|
System.out.println("test");// 7
|
|
}// 8
|
|
}
|
|
|
|
class 'pkg/TestPrivateEmptyConstructor' {
|
|
method '<init> ()V' {
|
|
4 4
|
|
}
|
|
|
|
method 'test ()V' {
|
|
0 7
|
|
3 7
|
|
5 7
|
|
8 8
|
|
}
|
|
}
|
|
|
|
Lines mapping:
|
|
4 <-> 5
|
|
7 <-> 8
|
|
8 <-> 9
|
|
|