I want to ask what javap shows besides the public fields and methods of the classes passed to it.
I was reviewing a class file having only a static variable. As expected, javap shows the static variable and class constructor as output but it also shows something like:
static {};
What does this line mean?