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 7c2cc38 commit de48ec2Copy full SHA for de48ec2
bundles/org.eclipse.swt/Eclipse SWT PI/common/org/eclipse/swt/internal/Library.java
@@ -373,8 +373,8 @@ public static String getVersionString () {
373
if (MINOR_VERSION < 100) version += "0"; //$NON-NLS-1$
374
}
375
version += MINOR_VERSION;
376
- /* No "r" until first revision */
377
- if (REVISION > 0) version += "r" + REVISION; //$NON-NLS-1$
+ /* "r" followed by respective revision version starting with zero(0) */
+ version += "r" + REVISION; //$NON-NLS-1$
378
379
return version;
380
0 commit comments