Skip to content

Commit

Permalink
Merge pull request #3661 from Windchild292/dev_Windchild_ReleaseDate
Browse files Browse the repository at this point in the history
Logging: Removing Outdated Release Date
  • Loading branch information
Windchild292 authored May 27, 2022
2 parents 51dc0cc + a221fc8 commit 1037ace
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions megamek/src/megamek/MegaMek.java
Original file line number Diff line number Diff line change
Expand Up @@ -332,9 +332,9 @@ public static String getUnderlyingInformation(final String originProject) {
public static String getUnderlyingInformation(final String originProject,
final String currentProject) {
final LocalDateTime buildDate = getBuildDate();
return String.format("Starting %s v%s\n\tBuild Date: %s\n\tRelease Date: %s\n\tToday: %s\n\tOrigin Project: %s\n\tJava Vendor: %s\n\tJava Version: %s\n\tPlatform: %s %s (%s)\n\tSystem Locale: %s\n\tTotal memory available to %s: %,.0f GB",
return String.format("Starting %s v%s\n\tBuild Date: %s\n\tToday: %s\n\tOrigin Project: %s\n\tJava Vendor: %s\n\tJava Version: %s\n\tPlatform: %s %s (%s)\n\tSystem Locale: %s\n\tTotal memory available to %s: %,.0f GB",
currentProject, MMConstants.VERSION, ((buildDate == null) ? "N/A" : buildDate),
MMConstants.RELEASE_DATE, LocalDate.now(), originProject,
LocalDate.now(), originProject,
System.getProperty("java.vendor"), System.getProperty("java.version"),
System.getProperty("os.name"), System.getProperty("os.version"),
System.getProperty("os.arch"), Locale.getDefault(), currentProject,
Expand Down
1 change: 0 additions & 1 deletion megamek/src/megamek/SuiteConstants.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ public abstract class SuiteConstants {
//region General Constants
public static final String PROJECT_NAME = "MegaMek Suite";
public static final Version VERSION = new Version("0.49.9-SNAPSHOT");
public static final LocalDate RELEASE_DATE = LocalDate.of(2022, 5, 27);
public static final int MAXIMUM_D6_VALUE = 6;

// This is used in creating the name of save files, e.g. the MekHQ campaign file
Expand Down

0 comments on commit 1037ace

Please sign in to comment.