Author: fanningpj
Date: Mon Jul 3 21:01:19 2023
New Revision: 1910760
URL: http://svn.apache.org/viewvc?rev=1910760&view=rev
Log:
remove release date from version.java
Modified:
poi/trunk/poi/src/main/version/Version.java.template
Modified: poi/trunk/poi/src/main/version/Version.java.template
URL:
http://svn.apache.org/viewvc/poi/trunk/poi/src/main/version/Version.java.template?rev=1910760&r1=1910759&r2=1910760&view=diff
==============================================================================
--- poi/trunk/poi/src/main/version/Version.java.template (original)
+++ poi/trunk/poi/src/main/version/Version.java.template Mon Jul 3 21:01:19
2023
@@ -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()
);
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]