We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5756385 commit 9bc865dCopy full SHA for 9bc865d
src/jdk.jfr/share/classes/jdk/jfr/internal/tool/Metadata.java
@@ -69,7 +69,7 @@ public int compare(Type t1, Type t2) {
69
} else {
70
// Ensure that jdk.* are printed first
71
// This makes it easier to find user defined events at the end.
72
- if (Type.SUPER_TYPE_EVENT.equals(t1.getSuperType()) && !package1.equals(package2)) {
+ if (Type.SUPER_TYPE_EVENT.equals(t1.getSuperType())) {
73
if (package1.equals("jdk.jfr")) {
74
return -1;
75
}
0 commit comments