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 c269100 commit ebd3781Copy full SHA for ebd3781
visualvm/jfr/src/org/graalvm/visualvm/jfr/views/environment/EnvironmentViewSupport.java
@@ -138,6 +138,8 @@ private static String formatOSInfo(String os) {
138
if (s[0].startsWith("Bsduname:")) s[0] = s[0].substring("Bsduname:".length()).trim(); // NOI18N
139
if (s[0].startsWith("DISTRIB_ID=")) s[0] = s[0].substring("DISTRIB_ID=".length()).trim(); // NOI18N
140
141
+ if (s[0].isEmpty() && s.length >= 2) s[0] = s[1];
142
+
143
int i = s[0].indexOf(';'); // NOI18N
144
if (i > 0) s[0] = s[0].substring(0, i).trim();
145
0 commit comments