summaryrefslogtreecommitdiffstats
path: root/poi
diff options
context:
space:
mode:
authorPJ Fanning <fanningpj@apache.org>2023-07-03 21:01:19 +0000
committerPJ Fanning <fanningpj@apache.org>2023-07-03 21:01:19 +0000
commit23caf67c58fb5e6ecbe50eb1a24b02ef40585629 (patch)
tree8b9f30a7e53b4847abdb0c99af52e7c9e8e22995 /poi
parent04442923f32894da8d8496145fed186ab1b4fdc4 (diff)
downloadpoi-23caf67c58fb5e6ecbe50eb1a24b02ef40585629.tar.gz
poi-23caf67c58fb5e6ecbe50eb1a24b02ef40585629.zip
remove release date from version.java
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1910760 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi')
-rw-r--r--poi/src/main/version/Version.java.template11
1 files changed, 1 insertions, 10 deletions
diff --git a/poi/src/main/version/Version.java.template b/poi/src/main/version/Version.java.template
index 716ec916bf..908964f84a 100644
--- a/poi/src/main/version/Version.java.template
+++ b/poi/src/main/version/Version.java.template
@@ -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
@@ -38,13 +37,6 @@ public class Version {
}
/**
- * Return the date of the release / build
- */
- public static String getReleaseDate() {
- return RELEASE_DATE;
- }
-
- /**
* Name of product: POI
*/
public static String getProduct() {
@@ -62,8 +54,7 @@ public class Version {
*/
public static void main(String[] args) {
System.out.println(
- "Apache " + getProduct() + " " +
- getVersion() + " (" + getReleaseDate() + ")"
+ "Apache " + getProduct() + " " + getVersion()
);
}
}