Updated to Kobalt 0.882
This commit is contained in:
parent
4c25c756f5
commit
c4baf11bcd
13 changed files with 38 additions and 40 deletions
|
@ -213,7 +213,12 @@ public class VersionInfo {
|
|||
* @return The version string.
|
||||
*/
|
||||
public String getVersion() {
|
||||
return Integer.toString(major) + '.' + Integer.toString(minor) + '.' + Integer.toString(patch) + (
|
||||
prerelease.length() > 0 ? '-' + prerelease : "") + (buildmeta.length() > 0 ? '+' + buildmeta : "");
|
||||
return Integer.toString(major)
|
||||
+ '.'
|
||||
+ Integer.toString(minor)
|
||||
+ '.'
|
||||
+ Integer.toString(patch)
|
||||
+ (prerelease.length() > 0 ? '-' + prerelease : "")
|
||||
+ (buildmeta.length() > 0 ? '+' + buildmeta : "");
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue