Skip to content

Commit 86f54ef

Browse files
author
pdavidc
committed
Updated the Version string to eliminate redundant version numbers
1 parent 0e5307c commit 86f54ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/gov/nasa/worldwind/Version.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ public class Version
1515
private static final String MAJOR_VALUE = "2";
1616
private static final String MINOR_VALUE = "1";
1717
private static final String DOT_VALUE = "0";
18-
private static final String versionNumber = MAJOR_VALUE + "." + MINOR_VALUE + "." + DOT_VALUE;
19-
private static final String versionName = "NASA World Wind Java v2.1.0";
18+
private static final String versionNumber = "v" + MAJOR_VALUE + "." + MINOR_VALUE + "." + DOT_VALUE;
19+
private static final String versionName = "NASA World Wind Java";
2020

2121
public static String getVersion()
2222
{

0 commit comments

Comments
 (0)