-
Bug
-
Resolution: Fixed
-
P4
-
8
-
8.0 b126
-
b03
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8045123 | 8u25 | Alexander Zuev | P4 | Resolved | Fixed | b01 |
JDK-8033977 | 8u20 | Alexander Zuev | P4 | Resolved | Fixed | b03 |
JDK-8052562 | emb-8u26 | Alexander Zuev | P4 | Resolved | Fixed | b17 |
Compile a simple class with two ore more fields, e.g.
public class SimpleClass {
public int a;
public int b;
}
Get the javap's output for the "-v -c" (or "-v -l") set of option. The "field" sections are separated by two empty lines:
......
public int a;
descriptor: I
flags: ACC_PUBLIC
public int b;
descriptor: I
flags: ACC_PUBLIC
public SimpleClass();
......
public class SimpleClass {
public int a;
public int b;
}
Get the javap's output for the "-v -c" (or "-v -l") set of option. The "field" sections are separated by two empty lines:
......
public int a;
descriptor: I
flags: ACC_PUBLIC
public int b;
descriptor: I
flags: ACC_PUBLIC
public SimpleClass();
......
- backported by
-
JDK-8033977 Extra empty line between field declarations for the "-v -c" and "-v -l" combination of options
-
- Resolved
-
-
JDK-8045123 Extra empty line between field declarations for the "-v -c" and "-v -l" combination of options
-
- Resolved
-
-
JDK-8052562 Extra empty line between field declarations for the "-v -c" and "-v -l" combination of options
-
- Resolved
-