remove release date from version.java

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1910760 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2023-07-03 21:01:19 +00:00
parent 04442923f3
commit 23caf67c58
1 changed files with 1 additions and 10 deletions

View File

@ -27,7 +27,6 @@ package org.apache.poi;
*/
public class Version {
private static final String VERSION_STRING = "@VERSION@";
private static final String RELEASE_DATE = "@DSTAMP@";
/**
* Return the basic version string, of the form
@ -37,13 +36,6 @@ public class Version {
return VERSION_STRING;
}
/**
* Return the date of the release / build
*/
public static String getReleaseDate() {
return RELEASE_DATE;
}
/**
* Name of product: POI
*/
@ -62,8 +54,7 @@ public class Version {
*/
public static void main(String[] args) {
System.out.println(
"Apache " + getProduct() + " " +
getVersion() + " (" + getReleaseDate() + ")"
"Apache " + getProduct() + " " + getVersion()
);
}
}